|
RE: Error with front-page missing after successful install.
Requires some tweaking of components/com_content/content.php
Set your top-menu item to com_frontpage and modify this if statement in content.php:
// loads function for frontpage component
if ( $option == 'com_frontpage' ) {
//$cache->call( 'frontpage', $gid, $access, $pop, $id, $limit, $limitstart );
$cache->call('showBlogSection', 4, $gid, $access, $pop, 26, $limit, $limitstart );
return;
}
Exchange the frontpage call with one of these calls from the case statements
below and modify the $gid and $id to reflect the page you wish to redirect it to.
Make sure the first parameter in the call reflects where you are directing it.
Hope this saves some time I lost =)<br><br>Post edited by: beardww, at: 2006/11/01 14:25
|
"This page doesn't e ...
|
Posted 18 years, 5 months ago
by beardww
|