Guest User

Untitled

a guest
Jul 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. class MyThemeHooks < Spree::ThemeSupport::HookListener
  2.  
  3. replace :homepage_products, 'shared/my_partial'
  4.  
  5. replace :homepage_products, :inline => %(<h2><%= link_to('inline', '#') %>, foo = <%= foo %>, product count = <%= @products.count %></h2>)
  6.  
  7. replace :homepage_products do
  8. %(<%= link_to('With block', '#') %><br />
  9. foo = <%= foo %><br />
  10. product count = <%= @products.count %></h2>)
  11. end
  12.  
  13. end
Add Comment
Please, Sign In to add comment