我只是在产品标有'预购'时才试图隐藏单品页面上的库存状态。
到目前为止,我已将下面提到的代码添加到我的functions.php中,以更改此特定标记的“添加到购物车”按钮文本。知道应该/可以添加什么代码才能实现这个目标吗?
//For single product page
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text' ); // 2.1 +
function woo_custom_cart_button_text() {
global $product;
if ( has_term( 'Preorder', 'product_tag', $product->ID ) ) :
return __( 'Pre order Now !', 'woocommerce' );
else:
return __( 'In Winkelmand', 'woocommerce' );
endif;
}
答案 0 :(得分:4)
您应该尝试使用 woocommerce_stock_html
过滤器钩子:
add_filter( 'woocommerce_stock_html', 'filter_woocommerce_stock_html', 10, 3 );
function filter_woocommerce_stock_html( $availability_html, $availability_availability, $variation ) {
global $product;
if ( has_term( 'Preorder', 'product_tag', $product->ID ) ) :
// Define here your text to replace
$availability_html = __( 'Say something here', 'woocommerce' );
endif;
return $availability_html;
};
此代码已经过测试,我希望这是您期望得到的。
代码进入活动子主题(或主题)的function.php文件。或者也可以在任何插件php文件中。