I'm using a ZenCart in my website, actually I want to customise the look of my site. I've done this for the index pages but not for the inner pages, because those same pages are using for the inner pages. For example the banner image is on the index page and I don't want to see it in the inner pages. Could any body help me out what is the correct way to put a check in the pages that whether it is index page of any other inner page...

Please somebody help me to find out the problem...

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

simple

check below code

if($_GET['main_page']=='index' and !isset($_GET['cPath']))
{
// your code
}
link|improve this answer
Thanks for the help... i maked it working yesterday, But thanks again for the help :) – Ankita Gupta Nov 3 '11 at 13:44
feedback

Use $current_page_base variable - it's set and maintained by Zen Cart. I'm not sure if $_GET['main_page'] is ever overridden in Zen Cart code but it seems safer to not relay on it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.