citrus / spree_essential_cms

SpreeEssentialCms is a full featured CMS for Spree Commerce.
BSD 3-Clause "New" or "Revised" License
68 stars 82 forks source link

Cant get meta desc & keywords to output on home page #27

Closed ChrisLusted closed 6 years ago

ChrisLusted commented 12 years ago

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

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?

Thanks in advance