Woocommerce - 是否可以为没有价格的产品定义默认值

时间:2017-09-22 10:05:28

标签: php wordpress woocommerce

是否可以定义将显示的默认值,例如" TBC"当产品没有定价时。

我尝试了几个不同的代码片段,但似乎没有一个代码片段给我想要的结果。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:2)

您可以将woocommerce_empty_price_html filer hook用于简单产品。 对于使用的变量产品woocommerce_variable_empty_price_html。 对于使用的变体产品woocommerce_variation_empty_price_html

请尝试以下代码

add_filter('woocommerce_empty_price_html', 'custom_call_for_empty_price_html');
add_filter('woocommerce_variable_empty_price_html', 'custom_call_for_empty_price_html');
add_filter('woocommerce_variation_empty_price_html', 'custom_call_for_empty_price_html');
function custom_call_for_empty_price_html() {
     return 'TBC';
}

将此代码放入您的有效主题function.php文件