2 回答
TA贡献1828条经验 获得超13个赞
我正在使用以下解决方案,这与我的初衷并不完全相同,因为它没有显示可变产品的价格范围,而是实际显示“发件人”消息(可以更改),然后是单一价格。
但是,它现在通过短代码适用于标准产品和可变产品,我需要的也是如此。
function custom_price_shortcode_callback( $atts ) {
$atts = shortcode_atts( array(
'id' => null,
), $atts, 'product_price' );
$html = '';
if( intval( $atts['id'] ) > 0 && function_exists( 'wc_get_product' ) ){
$product = wc_get_product( intval( $atts['id'] ) );
if ( $product->is_type( 'variable' ) ){
$prefix = sprintf('%s ', __('From','woocommerce'));
$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 ) : wc_price( $min_price_sale );
return
( $min_price == $max_price ) ? sprintf('<br/>' . $price) : $html = sprintf('<br/><span class="from-price">%s%s</span>', $prefix, $price);
}
else{
// Get the product prices
$price = wc_get_price_to_display( $product, array( 'price' => $product->get_price() ) ); // Get the active price
$regular_price = wc_get_price_to_display( $product, array( 'price' => $product->get_regular_price() ) ); // Get the regular price
$sale_price = wc_get_price_to_display( $product, array( 'price' => $product->get_sale_price() ) ); // Get the sale price
// Formatting price settings (for the wc_price() function)
$args = array(
'ex_tax_label' => false,
'decimal_separator' => '.',
'thousand_separator' => ',',
'decimals' => 2,
'price_format' => '%1$s%2$s',
);
// Formatting html output
if( ! empty( $sale_price ) && $sale_price != 0 && $sale_price < $regular_price )
$html = "<br/><del>" . wc_price( $regular_price, $args ) . "</del> " . wc_price( $sale_price, $args ); // Sale price is set
else
$html = "<br/>" . wc_price( $price, $args ); // No sale price set
}
}
return $html;
}
add_shortcode( 'product_price', 'custom_price_shortcode_callback' );
TA贡献1851条经验 获得超5个赞
使用 Booster for woocommerce 插件。并将这个 [wcj_product_price] 简码放在任何你想要的地方。它将显示带有货币符号的简单或可变产品价格。而且这个插件对woommerce很有帮助。
- 2 回答
- 0 关注
- 194 浏览
添加回答
举报