Guest User

Untitled

a guest
Nov 15th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. add_action( 'woocommerce_add_cart_item_data', function( $cart_item_data, $product_id ) {
  2.  
  3. // Biite ID austauschen. Wenn Produkt A mit ID 54 im Warenkorb liegt, kommt Produkt B mit ID 56 automatisch im Warenkorb hinzu.
  4. if ( 54 == $product_id ) {
  5. WC()->cart->add_to_cart( 56 );
  6. }
  7.  
  8. }, 10, 2 );
Add Comment
Please, Sign In to add comment