首页 > 解决方案 > 有什么方法可以显示所有产品变化价格?

问题描述

我有销售产品的 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>';
}

标签: wordpress

解决方案


推荐阅读