在WooCommerce中,我使用的是Storefront子主题。我想在单个产品页面中更改社交媒体图标位置。我想把它们放在图像下面。默认情况下,它们位于meta。
下我在functions.php
(在我的孩子主题中)添加以下代码:
/* Enter your custom functions here */
add_action('woocommerce_before_single_product_summary','woocommerce_template_single_sharing',30);
// Remove Sharing icons
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_sharing',50);
但是不起作用。
任何帮助将不胜感激。
答案 0 :(得分:1)
要移动共享图标位置,您可以尝试使用此选项:
add_action( 'woocommerce_before_single_product_summary', 'move_template_single_sharing', 5 );
function move_template_single_sharing(){
// Remove Sharing icons
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_sharing', 50 );
// New Sharing icons location
add_action( 'woocommerce_before_single_product_summary', 'woocommerce_template_single_sharing', 30 );
}
代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。
测试并运作