我知道如何在网站价格后添加文本,但是不适用于邮件模板。我也尝试了woocomerce设置,但不适用于邮件。
这是针对站点的:
function cw_change_product_price_display( $price ) {
$price .= ' incl tax';
return $price;
}
add_filter( 'woocommerce_get_price_html', 'cw_change_product_price_display' );
add_filter( 'woocommerce_cart_item_price', 'cw_change_product_price_display' );
如何确定邮件模板的价格?
答案 0 :(得分:0)
为此,您需要使用woocommerce_order_subtotal_to_display
过滤器。
请检查以下代码,这将对您有用。
// define the woocommerce_order_subtotal_to_display callback
function filter_woocommerce_order_subtotal_to_display( $subtotal, $compound, $instance ) {
$subtotal .= ' incl tax'; // add your text here
return $subtotal;
};
// add the filter
add_filter( 'woocommerce_order_subtotal_to_display', 'filter_woocommerce_order_subtotal_to_display', 10, 3 );