在WooCommerce的价格显示之前(后)添加自定义文本

在WooCommerce的价格显示之前添加自定义文本

//产品价格后面添加字符
function change_product_price( $price ) {

$price .= ' <span id="qi">起</span>';

return $price;

}

add_filter( 'woocommerce_get_price_html', 'change_product_price' ); //产品上的价格

// add_filter( 'woocommerce_cart_item_price', 'change_product_price' ); 购物车里面的价格

------------------------------------------------------------------------------------------------------------------------

//产品价格前面添加字符

add_filter( 'woocommerce_get_price_html', 'cw_change_product_price_display' );

add_filter( 'woocommerce_cart_item_price', 'cw_change_product_price_display' );

function cw_change_product_price_display( $price ) {

// Your additional text in a translatable string

$text = __('TEXT');

// returning the text before the price

return $text . ' ' . $price;