gpt4 book ai didi

php - 更改单个产品页面上的评论评级位置

转载 作者:可可西里 更新时间:2023-11-01 01:14:36 24 4
gpt4 key购买 nike

<分区>

实际上,在 WooCommerce 中,我使用的是 the code below , 更改我的简单产品的价格位置:

function changing_price_location_for_simple_products(){
global $product;

if($product->is_type('simple')) // Only for simple products (thanks to helgathevicking)
{
remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_price', 10);
add_action('woocommerce_single_product_summary', 'woocommerce_template_single_price', 25);
}
}
add_action('woocommerce_before_single_product', 'changing_price_location_for_simple_products');

我想将评论中的星级评分从页面顶部向下移动到我的价格上方或右侧。

这里是 live link to a product

请问有什么帮助吗?

谢谢

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com