Closed oleksify closed 13 years ago
The pages controller inherits from the ApplicationController rather than Spree::BaseController. Just make your application controller inherit from the Spree::BaseController and you should be good to go...
class ApplicationController < Spree::BaseController
protect_from_forgery
end
Check out https://github.com/citrus/spree_essentials_demo for a complete example..
Working, thanks!
No problemo! Let me know if you have any other questions...
Why pages doesn't use global site layout?