Advertisement
Guest User

Untitled

a guest
Sep 5th, 2012
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. { "rules_require_product_2" : {
  2. "LABEL" : "Require Product 2",
  3. "PLUGIN" : "reaction rule",
  4. "REQUIRES" : [ "commerce_order", "rules", "commerce_cart" ],
  5. "ON" : [ "commerce_cart_product_add" ],
  6. "IF" : [
  7. { "NOT commerce_order_contains_product" : {
  8. "commerce_order" : [ "commerce-order" ],
  9. "product_id" : "PROD-02",
  10. "operator" : "=",
  11. "value" : "1"
  12. }
  13. }
  14. ],
  15. "DO" : [
  16. { "drupal_message" : {
  17. "message" : "Sorry, in order to add that to your cart, you must add Product #2",
  18. "type" : "warning"
  19. }
  20. },
  21. { "LOOP" : {
  22. "USING" : { "list" : [ "commerce-order:commerce-line-items" ] },
  23. "ITEM" : { "list_item" : "Current list item" },
  24. "DO" : [
  25. { "list_remove" : {
  26. "list" : [ "commerce-order:commerce-line-items" ],
  27. "item" : [ "list-item" ]
  28. }
  29. }
  30. ]
  31. }
  32. }
  33. ]
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement