Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- { "rules_implement_shipping_if_content_is_tagged_with_a_term" : {
- "LABEL" : "Implement shipping if content is tagged with a term",
- "PLUGIN" : "rule",
- "REQUIRES" : [ "rules", "commerce_shipping" ],
- "USES VARIABLES" : {
- "order" : { "label" : "order", "type" : "commerce_order" },
- "line_item" : { "label" : "line_item", "type" : "commerce_line_item" }
- },
- "IF" : [
- { "entity_is_of_bundle" : {
- "entity" : [ "line-item" ],
- "type" : "commerce_line_item",
- "bundle" : { "value" : { "product" : "product" } }
- }
- },
- { "entity_has_field" : { "entity" : [ "line-item" ], "field" : "commerce_product" } },
- { "entity_has_field" : { "entity" : [ "line-item:commerce-product" ], "field" : "field_tags" } },
- { "list_contains" : { "list" : [ "line-item:commerce-product:field-tags" ], "item" : "1" } }
- ],
- "DO" : [
- { "commerce_shipping_service_rate_order" : { "shipping_service_name" : "free", "commerce_order" : [ "order" ] } }
- ],
- "PROVIDES VARIABLES" : [ "order", "line_item" ]
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement