我的產品的價格需要以「每平方英尺」結尾。我希望這隻適用於特定類別的產品,並且只在價格大於0時使用。除非價格爲零,否則在價格後添加文字,然後在WooCommerce中致電價格
當產品沒有列出價格時,我需要價格在沒有平方英尺文字的情況下說「要求價格」之後。
所以這裏是我在網上找到的開始,但他們沒有任何與他們相關的條件,所以他們一直適用於所有產品。
/* Display "Call for Price" instead of empty price */
add_filter('woocommerce_get_price_html', 'custom_price_message');
function custom_price_message($price) {
$vat = ' per sq. ft.';
return $price . $vat;
}
/* Display "Call for Price" instead of empty price */
add_filter('woocommerce_empty_price_html', 'custom_call_for_price');
add_filter('woocommerce_variable_empty_price_html', 'custom_call_for_price');
add_filter('woocommerce_variation_empty_price_html', 'custom_call_for_price');
function custom_call_for_price() {
return 'Call for Price';
}
另一種甜蜜的事情是有「價格面議」的文字可點擊的「電話」鏈接,將調用一次點擊。這不是必要的,但只是一個獎金 –