Move product title above product image on Woocommerce archive pages

后端 未结 2 1495
耶瑟儿~
耶瑟儿~ 2021-01-23 00:08

I am trying to move the product title above the product image on the product archive page. I have managed to figure out how to move the information, but the price is moving abov

2条回答
  •  一生所求
    2021-01-23 00:38

    Instead try the following, where you will set the product thumbnail just after the product title:

    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 11 );
    

    Code goes in function.php file of your active child theme (or active theme). Tested and works.

    It should work for you too.

提交回复
热议问题