2017-05-10 9 views
0

私のカートページとチェックアウトページに表示された価格(小計、合計...)の後にテキストの説明を追加する必要があります。 私はそれをシングルページとショップページでやっていますが、他のページではできません。 私が見つけた唯一のことはこのコードですが、動作しません。ヘルプwoocommerceカートとチェックアウトページの価格に接尾辞テキストを追加するには?

add_filter('woocommerce_get_price_html', 'custom_price_message'); 
function custom_price_message($price) { 
    $text = 'lorem'; 
    return $price . $text; 
} 

答えて

0

ため おかげで私は答えを見つけたが、それは出荷価格に追加されません:出荷価格について

add_filter('woocommerce_cart_item_price', 'kd_custom_price_message'); 
add_filter('woocommerce_cart_item_subtotal', 'kd_custom_price_message'); 
add_filter('woocommerce_cart_subtotal', 'kd_custom_price_message'); 
add_filter('woocommerce_cart_total', 'kd_custom_price_message'); 

function kd_custom_price_message($price) { 
    $afterPriceSymbol = ' TTC'; 
    return $price . $afterPriceSymbol; 
} 
0

ADD_FILTER( 'woocommerce_cart_shipping_method_full_label'、 'kd_custom_price_message');

関連する問題