Created
May 17, 2021 05:29
-
-
Save wbcomdev/f18c6f343756298e079bd66f034f6dfa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Add another product depending on the cart total. | |
| */ | |
| function wb_add_product_to_cart() { | |
| if ( ! is_admin() ) { | |
| global $woocommerce; | |
| $product_id = 38; // replace with your product id. | |
| $found = false; | |
| $cart_total = 30; // replace with your cart total needed to add above item. | |
| if ( $woocommerce->cart->total >= $cart_total ) { | |
| // check if product already in cart. | |
| if ( sizeof( $woocommerce->cart->get_cart() ) > 0 ) { | |
| foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) { | |
| $_product = $values['data']; | |
| if ( $_product->get_id() == $product_id ) { | |
| $found = true; | |
| } | |
| } | |
| // if product not found, add it. | |
| if ( ! $found ) { | |
| $woocommerce->cart->add_to_cart( $product_id ); | |
| } | |
| } else { | |
| // if no products in cart, add it. | |
| $woocommerce->cart->add_to_cart( $product_id ); | |
| } | |
| } | |
| } | |
| } | |
| add_action( 'template_redirect', 'wb_add_product_to_cart' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment