在 woocommerce 存档页面和 upsells/related 产品中显示自定义产品价格

Display a custom product price in woocommerce archive page and for upsells/related products

有没有办法在 WordPress 仪表板中启用后端字段以在存档页面和 upsells/related 产品中显示每个产品的自定义价格,但将价格保留在产品摘要中?

示例:产品 A 的价格为 10 欧元,但我想改为显示 "from 6€/kg"。

最简单的方法是使用覆盖 woocommerce_template_loop_price 的自定义字段,但此代码不起作用,但我不明白为什么。

add_action('woocommerce_template_loop_price', 'shopprice_change', 10, 2);
function shopprice_change ($price, $product) {
    global $post, $blog_id;
    $post_id = $post->ID;
    $price = get_post_meta($post_id, 'shoppricechange', true);
    return $price;
    wp_reset_query();
}

更新

我找到了一种在存档页面中更改价格而不更改单个产品页面的解决方案:

function cw_change_product_html( $price_html, $product ) {
    $unit_price = get_post_meta( $product->id, 'shoppricechange', true );
    if (is_product()) return $price_html;
    if ( ! empty( $unit_price ) ) {
        $price_html = '<span class="amount">' . wc_price( $unit_price ) . '</span>';  
    }
    return $price_html;
}
add_filter( 'woocommerce_get_price_html', 'cw_change_product_html', 10, 2 );

问题:实际上加售和相关产品也应该在单个产品页面上发生变化。但是 if (is_product()) return $price_html; 它也将它们排除在外。谁帮助解决这个问题将获得赏金。谢谢!

也许这个插件可以提供帮助,Woocommerce 额外价格字段(来源:https://wordpress.org/plugins/woocommerce-extra-price-fields/

  1. woocommerce_template_loop_price 不是一个动作,它是一个函数

  2. 使用下面的代码

    function cw_change_product_html( $price_html, $product ) {
            $unit_price = get_post_meta( $product->id, 'shoppricechange', true );
            $returnedSignleProdctP =false;
    
            $trace = debug_backtrace();
            $callstack = (array) $trace;
    
            foreach ($callstack as $key => $value) {
    
                if(isset($value['function']) && $value['function'] == 'woocommerce_output_related_products' ){
    
                    if ( ! empty( $unit_price ) ) {
    
                    $price_html = '<span class="amount">' . wc_price( $unit_price ) . '</span>';  
    
                    }
    
                }
    
                    if(isset($value['function']) && $value['function'] == 'woocommerce_template_single_price' ){
    
                        $price_html = $price_html;
    
                    }
    
    
    
                    if(isset($value['function']) && $value['function'] == 'woocommerce_template_loop_price' ){
    
                    if ( ! empty( $unit_price ) ) {
    
                    $price_html = '<span class="amount">' . wc_price( $unit_price ) . '</span>';  
    
                    }
    
                }
    
    
    
            }
    
    
    
    
    
    
            return $price_html;
    
    }
    add_filter( 'woocommerce_get_price_html', 'cw_change_product_html', 10, 2 );
    

But with if (is_product()) return $price_html; its excluding them as well.

用这个代替 is_product() 对我来说效果很好:

is_single( $product->get_id() )

而且你不应该直接调用 $product->id。相反,使用 $product->get_id().

这是我使用的完整代码:

function cw_change_product_html( $price_html, $product ) {
    if ( is_single( $product->get_id() ) )
        return $price_html;

    $unit_price = get_post_meta( $product->get_id(), 'shoppricechange', true );
    if ( ! empty( $unit_price ) ) {
        $price_html = '<span class="amount">' . wc_price( $unit_price ) . '</span>';
    }

    return $price_html;
}
add_filter( 'woocommerce_get_price_html', 'cw_change_product_html', 10, 2 );