up vote 0 down vote favorite
share [g+] share [fb]

I'm working on a Joomla site, and I need the front page to look slightly different from the rest of the pages, but not enough to warrant the use of two themes (it's a pain to have to update two stylesheets and two sets of images every time I want to make a small change).

My thoughts are to throw in a little test in the index.php of the template: if we're at the homepage, serve X, otherwise, serve Y. However, I'm not entirely sure how to test this. I can't just use the URL because url.com/ and url.com/index.php and url.com/index.php? etc etc are all valid.

Does anyone know of a way to do what I'm trying to do? Like a $_JOOMLA['page'] variable or something convenient like that?

Thanks! --Mala

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted
if(JRequest::getVar('view') == "frontpage" ) {
    //You are in!
}
else {
    //You are out!
}
link|improve this answer
Thank you! This is exactly what I was looking for. – Mala Nov 18 '09 at 20:35
This might break if you install another component that has a view named "frontpage". To make sure you're looking at the content component, I would write the 'if' statement this way: if(JRequest::getVar('view') == 'frontpage' && JRequest::getVar('option') == 'com_content') – jlleblanc Nov 18 '09 at 21:52
It works if you're using the com_content frontpage view on the front page, and not another component. – Flavio Nov 19 '09 at 7:31
feedback

for Joomla 1.6 and 1.7 it would be as follows:

if(JRequest::getVar('view') == "featured" ) {
    //You are in!
}
else {
    //You are out!
}
link|improve this answer
feedback

For Joomla .6, nothing else than the this worked for me:

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.