答案 0 :(得分:0)
(已更新)此简介功能将在简短说明后在单个产品页面中单独销售产品时添加自定义文字:
add_action( 'woocommerce_single_product_summary', 'sold_individually_custom_text', 25 );
function sold_individually_custom_text(){
global $product;
if ( $product->is_sold_individually( ) ) {
echo '<p class="sold-individually">' . __("You can only buy one piece of this product", "woocommerce") . '</p>';
}
}
代码进入活动子主题(或活动主题)的function.php文件。