我需要一个功能,用“请求报价”替换WooCommerce中的价格。在我的网站主页上,我只需要文本,但在产品页面(这是我的旅游主题的定制产品)上,我需要它是一个按钮。
我怎么能有两个功能,一个只在家里工作,另一个在网站的其余部分工作?
在函数中。php,类似于:
IF IS_HOME:
add_filter(\'woocommerce_empty_price_html\', \'custom_call_for_price\');
function custom_call_for_price() {
return \'Request a quote\';
}
AND IF IS_NOT_HOME:
add_filter(\'woocommerce_empty_price_html\', \'custom_call_for_price\');
function custom_call_for_price() {
$html .= \'<a href="#"><input value="Request a quote" type="submit"></a>\';
return $html;
}
能做到吗?谢谢