有什么办法可以显示所有产品变动价格?

时间:2019-02-18 12:40:10

标签: wordpress

我有一个带产品销售的WordPress woo-commerce网站,我为该产品提供三种价格(1公斤-420、500克-220和250克-100)。目前它的价格显示为100-420,但我需要在产品下方显示所有三个变化的价格,这个问题有谁能帮忙

https://imgur.com/a/gJtAU6D

$formatted_price = ( $negative ? '-' : '' ) . sprintf( $args['price_format'], '<span class="woocommerce-Price-currencySymbol">' . get_woocommerce_currency_symbol( $args['currency'] ) . '</span>', $price );
$return          = '<span class="woocommerce-Price-amount amount">' . $formatted_price . '</span>';

if ( $args['ex_tax_label'] && wc_tax_enabled() ) {
    $return .= ' <small class="woocommerce-Price-taxLabel tax_label">' . WC()->countries->ex_tax_or_vat() . '</small>';
}

0 个答案:

没有答案