在Woocommerce中显示正常价格或可变价格范围

时间:2017-12-18 18:53:50

标签: php wordpress woocommerce product price

我有一个产品清单,而且我在显示可变产品的价格范围方面存在问题。

如你所知,价格是否正常,一切正常。然而,如果产品具有可变价格,则显示的价格为0€

嗯,显示价格的代码是:

<?php
if (isset($ebookstore_theme_option['woo-list-price']) && 
    $ebookstore_theme_option['woo-list-price'] == 'enable') {
    $ebookstore_woo .= '<strong class="amount">'.esc_attr($currency).''.$price_sale.'</strong>';
}

有关如何显示可变范围价格的想法吗?

1 个答案:

答案 0 :(得分:3)

对于WooCommerce中的可变产品,您需要:

  • 目标变量产品类型
  • 获取最低和最高价格。

因此,您需要获取产品对象的实例。一般来说,你可以得到它:

 global $product;

如果它不起作用,你将使用intead:

global $post;
$product = wc_get_product( $post->ID );

现在从这一点开始,您将使用以下内容:

<?php
global $product;

if ( isset( $ebookstore_theme_option['woo-list-price'] ) && $ebookstore_theme_option['woo-list-price'] == 'enable' ){

    // For all product types that are not "variable products"
    if( ! $product->is_type('variable') ){
        $ebookstore_woo .= '<strong class="amount">'.esc_attr($currency).''.$price_sale.'</strong>';
    }
    // For variable products    
    else {
        $min_price = $product->get_variation_price( 'min' );
        $max_price = $product->get_variation_price( 'max' );

        $ebookstore_woo .= '<strong class="amount">'.esc_attr($currency).''.$min_price.' - '.esc_attr($currency).''.$max_price.'</strong>';
    }
}

如您所见,我正在使用WC_Product_Variable methods

可能你不知道,但是woocommerce有几个格式化价格函数:

  • wc_price( $price );
  • wc_format_price_range( $from, $to );
  • wc_format_sale_price( $regular_price, $sale_price );

他们都将包括货币