can you please advise me how can I add text to the product category under products?
Thank you
Andrew
CodePudding user response:
if you´re using wordpress plugin try it:
add_action( ‘woocommerce_after_main_content’, ‘add_my_text’ );
function add_my_text() {
echo ‘<p>More Content on the Way.</p>’;
}