megarock Posted August 29, 2016 Share Posted August 29, 2016 Hi! this is the web that actually Im working. The main page I need a full image, ok, but I need a footer, so when I put footer also appears in the home page. ¿How I can remove the footer on homepage? Thanks. Link to comment Share on other sites More sharing options...
endriu107 Posted August 29, 2016 Share Posted August 29, 2016 In file footer.tpl you can add before footer container if $page_name != index. 1 Link to comment Share on other sites More sharing options...
ventura Posted August 29, 2016 Share Posted August 29, 2016 You also can override the file controllers\front\IndexController.php adding public function init() { parent::init(); $this->display_footer = false; } Link to comment Share on other sites More sharing options...
megarock Posted August 29, 2016 Author Share Posted August 29, 2016 You also can override the file controllers\front\IndexController.php adding public function init() { parent::init(); $this->display_footer = false; } Thanks a lot! it works! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now