Tickets

BOGO label is suppressed in Checkout

Hello, My client is using a payed version of Codesigner for his WooCommerce-webshop. We now how custom code that allows us to have “Buy one, get one free” functionality. It’s this code: add_action( ‘woocommerce_cart_calculate_fees’, ‘buy_4_get_1_free_discount’ ); function buy_4_get_1_free_discount( $cart ) { if ( is_admin() || defined( ‘DOING_AJAX’ ) && DOING_AJAX ) { return; } $target_product_id […]

BOGO label is suppressed in Checkout Read More »