当产品在Woocommerce中单独销售时添加自定义文本

时间:2018-04-01 18:44:54

标签: php wordpress woocommerce product hook-woocommerce

在Woocommerce中,如果产品单独销售,我想在单个产品页面中添加短信:

In this image you can see the rectangle where I need the message

在此屏幕截图中,我想用“您只能购买此产品的一件”替换红色矩形。

感谢任何帮助。

1 个答案:

答案 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文件。