I have used your instructions to add a custom home page to my spree site but cant seem to get the meta description or keywords to load in? The meta title loads in fine and it works on all the other pages apart from this custom home page.
I have added this decorator
Spree::HomeController.class_eval do
def home
@products = Spree::Product.sale
render :template => "spree/pages/home"
end
end
This route
root :to => 'spree/home#home'
Any ideas why it pulls in the spree config defined meta tags rather than the custom ones from the homepage?
Hi,
I have used your instructions to add a custom home page to my spree site but cant seem to get the meta description or keywords to load in? The meta title loads in fine and it works on all the other pages apart from this custom home page.
I have added this decorator
This route
Any ideas why it pulls in the spree config defined meta tags rather than the custom ones from the homepage?
Thanks in advance