Spree/Deface - Conditionally set an override

809 Views Asked by At

Is there a way to conditionally set a deface override, for example based on product?

So product == 'x', then do it, otherwise, ignore.

1

There are 1 best solutions below

2
On BEST ANSWER

Your best bet will be to conditionally use render_original like so:

Deface::Override.new(:virtual_path => "products", 
                     :name => "example", 
                     :surround => "div#products",
                     :text => "<% if @product == 'x' %><%# do something %><% else %><%= render_original %><% end %>")