Created
November 5, 2017 18:31
-
-
Save kartikparmar/e899ee7a7b8ee11ce56391d06815ee33 to your computer and use it in GitHub Desktop.
Adding product to cart on Add to Cart click
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
<?php | |
/* | |
* Automatically adding the product to the cart. | |
*/ | |
function aaptc_add_product_to_cart( $item_key, $product_id ) { | |
$product_category_id = 123; // cricket bat category id | |
$product_cats_ids = wc_get_product_term_ids( $product_id, 'product_cat' ); | |
if ( ! is_admin() && in_array( $product_category_id, $product_cats_ids ) ) { | |
$free_product_id = 12989; // Product Id of the free product which will get added to cart | |
$found = false; | |
//check if product already in cart | |
if ( sizeof( WC()->cart->get_cart() ) > 0 ) { | |
foreach ( WC()->cart->get_cart() as $cart_item_key => $values ) { | |
$_product = $values['data']; | |
if ( $_product->get_id() == $free_product_id ) | |
$found = true; | |
} | |
// if product not found, add it | |
if ( ! $found ) | |
WC()->cart->add_to_cart( $free_product_id ); | |
} else { | |
// if no products in cart, add it | |
WC()->cart->add_to_cart( $free_product_id ); | |
} | |
} | |
} | |
add_action( 'woocommerce_add_to_cart', 'aaptc_add_product_to_cart', 10, 2 ); |
hi, could you tell me, how to implement this code to my source code with woocommerce ? thank you so much. I really like this code
hi, could you tell me, how to implement this code to my source code with woocommerce ? thank you so much. I really like this code
You can add this in your currently active theme's functions.php file and change the product ids according to your requirements.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you for sharing the code.
Please check the code at the below link. I have modified it based on your requirements but I haven't tested it. Hopefully, that will work for you. Please let me know the result.
https://gist.github.com/kartikparmar/5f8a969d9261e010b0645a8ace9f500e