Advertisement
MrJoshMiller

Conditional Formatter

Nov 14th, 2013
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. { "rules_change_image_style_when_out_of_stock" : {
  2.     "LABEL" : "Change image style when out of stock",
  3.     "PLUGIN" : "reaction rule",
  4.     "REQUIRES" : [ "rules", "ffc" ],
  5.     "ON" : [ "field_is_rendered" ],
  6.     "IF" : [
  7.       { "data_is" : {
  8.           "data" : [ "commerce-product:commerce-stock" ],
  9.           "op" : "\u003C",
  10.           "value" : "1"
  11.         }
  12.       }
  13.     ],
  14.     "DO" : [
  15.       { "ffc_rules_change_image_style" : {
  16.           "ffc_element" : [ "" ],
  17.           "ffc_field" : [ "" ],
  18.           "ffc_empty" : "outofstock"
  19.         }
  20.       }
  21.     ]
  22.   }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement