Reorder the position of title,thumbnail and price in woocommerce shop page

落花浮王杯 提交于 2019-12-24 08:37:31

问题


I am working with wordpress woocommerce. I have to customize the shop page of the website. In which I have to place the featured image below the title and price. I try few things for that but that not work for me.

I try to change the priority of thumbnail in function.php file like below

 remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );    
add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 90 );

This is also not works for me infact its double the featured image on shop page. Can anybody please tell me how can I reorder the shop page 's thumbnail,title, price in woocommerce?


回答1:


Let try this and see it.

remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );
add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 90 );


来源:https://stackoverflow.com/questions/45208886/reorder-the-position-of-title-thumbnail-and-price-in-woocommerce-shop-page

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!