Page 1 of 1

How to display image only on home page?

Posted: Fri Oct 27, 2017 5:03 am
by oliwin
I have get an header.twig file. I need to display this header in home page differently than in others pages. How to do that?

So in home page header should be with menu and background images. In another case with another image.

Re: How to display image only on home page?

Posted: Fri Oct 27, 2017 8:52 am
by yodapt
catalog/controller/common/header.php

Code: Select all

if (!isset($_GET['route']) || (isset($_GET['route']) && $_GET['route'] == 'common/home')) {
	return $this->load->view('common/your_header', $data);
} else {
	return $this->load->view('common/header', $data);
}