php-“在订单满$100时免费获得产品X” WooCommerce中的优惠券代码

是否有任何简单的方法或任何插件可以为以下类型的优惠创建优惠券代码:“订单满$100可免费获得产品X”?

解决方法:

是的,这可以通过其他插件实现:商业版本WooCommerce Extended Coupon Features.

>在WooCommerce优惠券设置中,您已经有一个订单金额的最小字段:

php-“在订单满$100时免费获得产品X” WooCommerce中的优惠券代码

> free version of this plugin已经具有自动优惠券功能,该功能允许在满足限制的情况下将优惠券自动添加到用户购物车中.也在上面
>使用inexpensive commercial version of this plugin,您将缺少所需的功能:根据优惠券规则将免费产品添加到客户的购物车中.

因此,有了这3个功能,就可以满足自动添加优惠券代码的条件,即“订购金额超过100美元即可免费获得产品X”.

关于woocommerce优惠券的其他技巧

1)WooThemes片段:Create a coupon programmatically

2)自动将折扣优惠券应用于客户的购买:

function order_price_is_greater_than_100() {

    global $woocommerce, $total_qty;

    if ( $woocommerce->cart->has_discount( $coupon_code ) ) return;

    if ( $woocommerce->cart->get_cart_total() >= 100 ) {

        $coupon_code = 'UNIQUECODE'; // <= set the name of your coupon code here

        if (!$woocommerce->cart->add_discount( sanitize_text_field( $coupon_code ))) {
            $woocommerce->show_messages();
        }

        echo '<div class="woocommerce_message"><strong>The total price in your cart is greater than 100: You get … </strong></div>';

    }
}
add_action('woocommerce_before_cart_table', 'order_price_is_greater_than_100', 10, 0);
上一篇:php-在处理订单电子邮件模板中基于产品类别的条件显示


下一篇:php-当woocommerce产品中不存在任何内容时,隐藏自定义选项卡