I've been using NAV_LIST_UL:FP
In my web tree I have
HOME
Home Page Article
+ Cat 1
+ Cat 2
+ Cat 3
When I go to mysite.com the home page article appears fine
However when I click on the navigation HOME link I have a blank template ---> mysite.com/index.phtml
Parent Link index.phtml not going to homepage
- Oliver Georgi
- Site Admin
- Posts: 9940
- Joined: Fri 3. Oct 2003, 22:22
- Location: Dessau-Roßlau
- Contact:
Re: Parent Link index.phtml not going to homepage
rename Home Alias from index to ***whatever***
Re: Parent Link index.phtml not going to homepage
This takes me to mysite.com/whatever.phtml which is again, just a blank template
Whereas the page appears on mysite.com or mysite.com/home-1.phtml
- Oliver Georgi
- Site Admin
- Posts: 9940
- Joined: Fri 3. Oct 2003, 22:22
- Location: Dessau-Roßlau
- Contact:
Re: Parent Link index.phtml not going to homepage
would you please try for me in include/inc_front/content.func.inc.php and change around line 164 from
to
Also ensure that home is public and visible!
Oliver
Code: Select all
} elseif($alias == $indexpage['acat_alias']) {
$aktion[0] = $row[0]['acat_id'];
$aktion[1] = $row[0]['article_id'];
$aktion[3] = $row[0]['aktion3'];
$aktion[4] = $row[0]['aktion4'];
define('PHPWCMS_ALIAS', $alias);
}Code: Select all
} elseif($alias == $indexpage['acat_alias']) {
define('PHPWCMS_ALIAS', $alias);
}Oliver
Re: Parent Link index.phtml not going to homepage
works a treat!
Thanks Oliver

Thanks Oliver