2017-07-20 63 views
1

我正在使用wordpress woocommerce。我必須自定義網站的商店頁面。我必須將特色圖片放在標題和價格下方。我爲此嘗試了幾件事,但那對我沒有用。在woocommerce商店頁面重新排列標題,縮略圖和價格的位置

我試圖改變縮略圖的優先級function.php文件像下面

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); 

這還不算對我的作品INFACT店鋪頁面上的雙功能的圖像。任何人都可以告訴我如何在woocommerce上重新訂購商店頁面的縮略圖,標題,價格?

回答

0

讓我們嘗試一下,看看它。

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); 
+0

我function.php添加這個,看看結果http://prntscr.com/fxzmbn –

+0

當複製只是添加一些CSS將做的伎倆解決你的問題。這裏是你需要在後臺更新的CSS文件。 [.product-images {display:none; }] –

相關問題