Zum Inhalt springen
Startseite » Woocommerce Snippets » Gutschein einfügen

Gutschein einfügen

Gutschein wird automatisch hinzugefügt.

// Gutschein automatisch bei Sale-Aktionen im Warenkorb hinzufügen
add_action( 'woocommerce_before_cart', 'apply_matched_coupons' );
 
function apply_matched_coupons() {
    global $woocommerce;
    $coupon_code = 'COUPON'; 
    if ( $woocommerce->cart->has_discount( $coupon_code ) ) return;
    $woocommerce->cart->add_discount( $coupon_code );
}