For some reason i have lost the navigation bar at the bottom of my pages that has the sitemap, my account etc links in it and i can't for the life of me figure out what the settings would be to get this back, anybody ?
Thanks
For some reason i have lost the navigation bar at the bottom of my pages that has the sitemap, my account etc links in it and i can't for the life of me figure out what the settings would be to get this back, anybody ?
Thanks
1:maybe by mistake, you disable all footer links at tool-ezpage-Footer,clicking to set it from red to green means enabling;
2:maybe you deleted the code by mistake,if so,
location:
includes\templates\yourtemplate\common\tpl_footer.php
includes\templates\yourtemplate\common\tpl_main_page.php
add the following code to where you would like it to display,
such at the bottom of tpl_main_page.php or tpl_footer.php.
<!--bof-navigation display -->
<?php if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?>
<?php } ?>
<!--eof-navigation display -->
A link to your site might help us spot the problem.