产品价格后缀,基于WooCommerce的重量计算价格

问题描述 投票:2回答:1

我正在使用“Custom product price suffix on based on product categories in Woocommerce”回答线程,允许用这种方式调整我的定价显示:

    $price .= ' ' . __('/ $7.50 per serving');

但我真正想要的是让$ price输出物品的价格除以物品的重量。我该怎么做?

这是我的实际代码轻微改变(使用has_product_categories()from this thread):

add_filter( 'woocommerce_get_price_html', 'conditional_price_suffix', 10, 2 );
function conditional_price_suffix( $price, $product ) {
    // Handling product variations
    $product_id = $product->is_type('variation') ? $product->get_parent_id() : $product->get_id();

    // HERE define your product categories (can be IDs, slugs or names)
    $product_categories = array('monthly-menus');

    if( has_product_categories( $product_categories, $product_id ) )
        $price .= ' ' . __('/ $7.50 per serving');

    return $price;
}

我尝试了一大堆在前端输出NAN的东西。不要以为我做对了!

php wordpress woocommerce product price
1个回答
1
投票

以下内容将使用每份服务的计算价格添加您的前缀:

add_filter( 'woocommerce_get_price_html', 'conditional_price_suffix', 10, 2 );
function conditional_price_suffix( $price, $product ) {
    $weight    = (float) $product->get_weight();
    $raw_price = (float) wc_get_price_to_display($product);

    // Handling product variations
    $product_id = $product->is_type('variation') ? $product->get_parent_id() : $product->get_id();

    // HERE define your product categories (can be IDs, slugs or names)
    $product_categories = array('monthly-menus');
    $product_categories = array('clothing');

    if( has_product_categories( $product_categories, $product_id ) && $weight > 0 )
        $price .= ' ' . sprintf( __('/ %s per serving'), strip_tags( wc_price( $weight / $raw_price ) ) );
    return $price;
}

您必须在this thread中包含has_product_categories()函数代码。

代码位于活动子主题(或活动主题)的function.php文件中。测试和工作。

© www.soinside.com 2019 - 2024. All rights reserved.