M
M
MisTFoR2021-12-19 10:47:23
WooCommerce
MisTFoR, 2021-12-19 10:47:23

How to change woocommerce category page?

Hello!
I don't understand how to change category page in woocommerce.
I have a catalog page (where all categories of the site are displayed), when you click on a category, we get to its page where products are displayed. So, I want to additionally display on top of all products, for example, the line "Hello!"
How to do it?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
W
WP Panda, 2021-12-19
@MisTFoR

function action_woocommerce_before_shop_loop( $woocommerce_catalog_ordering, $int ) { 
    _e('Привет','textdomain');
}; 
         
add_action( 'woocommerce_before_shop_loop', 'action_woocommerce_before_shop_loop', 5, 2 )

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question