Change title and brand position
-
Hi xtemos,
I want to change position title product in shop. Title product move to below and brand title move to above. How to move them?
Regards
Hi,
Could you please provide us a screenshot what exactly you want to move? And send us a link so we can check what we can do there.
Regards
Here:
I just want to exchange the position
You need to copy the file woodmart/woocommerce/content-product-icons.php
to the child theme and change this code
<?php
/**
* woocommerce_shop_loop_item_title hook
*
* @hooked woocommerce_template_loop_product_title - 10
*/
do_action( 'woocommerce_shop_loop_item_title' );
?>
<?php
woodmart_product_categories();
woodmart_product_brands_links();
?>
to this one
<?php
woodmart_product_categories();
woodmart_product_brands_links();
?>
<?php
/**
* woocommerce_shop_loop_item_title hook
*
* @hooked woocommerce_template_loop_product_title - 10
*/
do_action( 'woocommerce_shop_loop_item_title' );
?>
Just tried but doesn’t work http://prntscr.com/l02qbx am I wrong?
Hello,
Please paste the file into the Woocommerce folder. You should have such a route woocommerce/content-product-icons.php
Best Regards