Hello :)
How can y modify the left menu ?
I would like delete the link : "personnalisation" (fr)
Y don't want people can change password or other ...
Thanks.
Offline
in category.php, delete
182 // customization link
183 $vtp->addSession( $handle, 'summary' );
184 $url = './profile.php?cat='.$page['cat'];
185 $url.= '&expand='.$page['expand'];
186 if ( $page['cat'] == 'search' )
187 {
188 $url.= '&search='.$_GET['search'].'&mode='.$_GET['mode'];
189 }
190 $vtp->setVar( $handle, 'summary.url', add_session_id( $url ) );
191 $vtp->setVar( $handle, 'summary.title', $lang['hint_customize'] );
192 $vtp->setVar( $handle, 'summary.name', replace_space( $lang['customize'] ) );
193 $vtp->closeSession( $handle, 'summary' );Offline