在WooCommerce中,我需要显示此网站koenigvineyards.com中的所有变体价格, 最低价格和"葡萄酒俱乐部价格" (最高价格)。
如何在WooCommerce中变量产品的最高价格之前添加自定义标签?
答案 0 :(得分:0)
要将自定义文字标签添加到变量产品的最高价格(例如"葡萄酒俱乐部价格"),您可以使用此功能隐藏在 woocommerce_format_price_range
中过滤钩子这样:
add_filter( 'woocommerce_format_price_range', 'custom_format_price_range', 10, 3 );
function custom_format_price_range( $price, $from, $to ) {
$text_max = '<span class"wine-club-label">'.__( "Wine club price" ).': </span>';
$price = sprintf( _x( '%1$s – %2$s', 'Price range: from-to', 'woocommerce' ), is_numeric( $from ) ? wc_price( $from ) : $from, is_numeric( $to ) ? $text_max . wc_price( $to ) : $text_max . $to );
return $price;
}
代码放在活动子主题(或活动主题)的function.php文件中或任何插件文件中。
经过测试和工作。