WooCommerce:在[product_page id =“xx”]中显示所选变体的价格

时间:2018-03-21 14:31:21

标签: php woocommerce product price variations

我成功地用可变产品类型中所选变体的价格替换了价格范围。我在我的孩子主题的function.php中使用了以下内容来实现这一点。

function iconic_variable_price_format( $price, $product ) {

    $prefix = sprintf('%s ', __('Starting', 'iconic'));

    $min_price_regular = $product->get_variation_regular_price( 'min', true );
    $min_price_sale    = $product->get_variation_sale_price( 'min', true );
    $max_price = $product->get_variation_price( 'max', true );
    $min_price = $product->get_variation_price( 'min', true );

    $price = ( $min_price_sale == $min_price_regular ) ?
        wc_price( $min_price_regular ) :
        '<del>' . wc_price( $min_price_regular ) . '</del>' . '<ins>' . wc_price( $min_price_sale ) . '</ins>';

    return ( $min_price == $max_price ) ?
        $price :
        sprintf('%s%s', $prefix, $price);

}
add_filter( 'woocommerce_variable_sale_price_html', 'iconic_variable_price_format', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'iconic_variable_price_format', 10, 2 );

到目前为止一切都很好。无论如何,如果我使用短代码[product_page id="xx"]插入整个产品页面,默认价格如上所示,所选变体的价格显示在“添加到购物车”按钮旁边的右下角。是否有通过短代码插入产品页面的单独模板文件?我希望所有内容的显示方式与产品页面本身显示的内容相同。

0 个答案:

没有答案