I would like to show text under Shop page main content. Different text for different categories.
I am aware of showing category description on the Shop page for each category but this is already in use.
Right now I am this far but it does not seem to work in the Child theme functions.php
if ( is_category( 'category1' ) ) {
function add_my_text() {
print '<p>This is my extra text.</p>';
}
add_action( 'woocommerce_after_main_content', 'add_my_text' );
}
Will be thankful if anyone knows how to improve this function