'Add text in custom categories in Woocommerce

can you please advise me how can I add text to the product category under products?

Thank you

Andrew



Solution 1:[1]

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>';
}

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Divyesh Prajapati