I searched all topics but none of them gives clear instructions on how to activate footer. I recently updated Sharetribe Go Community version to latest v9.0.0 but in admin I get this message:
Information updated in DB but website does not show any changes. I rebooted server, but not sure what else needs to be done for changes to take effect. It simply does not change anything.
Can someone take few minutes and post step by step clear instructions how to activate footer?
Thank you and Happy New Year everyone. Happy 2020!
The feature flags are not helpful at all, the are there for saas marketplaces.
I modified plan_footer_disabled function to return nil and also modified application.haml and _footer.haml files to enable the footer.
app/services/admin/communities/footer_service.rb
def plan_footer_disabled?
nil
end
app/views/layouts/application.haml
.
.
- else
= content_for(:page_content)
-# if @custom_footer.try(:display?)
= render 'layouts/footer'
-# Most of the JavaScript should be for performance reasons at the end of the body
.
.
app/views/layouts/_footer.haml
- if request.url.include? "/admin"
- return
- if @custom_footer.theme_logo?
= render 'layouts/footer/theme_logo'
- else
.
.
.
Very strange but even after completing these changes I am still not getting Footer to display in front end. Information saves in admin, but front end does not display footer.
By restart the server I don’t mean the server hosting the source code, I mean the app server such as unicorn, puma, passenger or whatever you are using.
I do not use any of this… I simply have Ubuntu 18.0.4 and Ruby 2.6 and the rest of the stuff needed to run Sharetribe… hmmm maybe there is other way to reboot… but if I do make changes I restart Apachee server or do sudo reboot.