Re: Footer Menu Support Thread
Is there any way of moving the footer menu below the copyright etc?
here is the code in my
includes/templates/YOUR_TEMPLATE/common/tpl_footer.php
PHP Code:
<?php
/**
* Common Template - tpl_footer.php
*
* this file can be copied to /templates/your_template_dir/pagename<br />
* example: to override the privacy page<br />
* make a directory /templates/my_template/privacy<br />
* copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_footer.php<br />
* to override the global settings and turn off the footer un-comment the following line:<br />
* <br />
* $flag_disable_footer = true;<br />
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: tpl_footer.php 4821 2006-10-23 10:54:15Z drbyte $
*/
require(DIR_WS_MODULES . zen_get_module_directory('footer.php'));
?>
<?php
if (!isset($flag_disable_footer) || !$flag_disable_footer) {
?>
<!--bof-navigation display -->
<?php if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<div id="navSuppWrapper">
<div id="navSupp">
<ul>
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
<li><?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?></li>
</ul>
</div>
</div>
<?php } ?>
<!--eof-navigation display -->
<!--bof-banner #5 display -->
<?php
if (SHOW_BANNERS_GROUP_SET5 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET5)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerFive" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
<?php
}
}
?>
<!--eof-banner #5 display -->
<!--bof- site copyright display -->
<div id="siteinfoLegal" class="legalCopyright">
<div class="footer">
<div style="float:left;padding:17px 0 0 4px">
<?php
if (SHOW_ACCEPTED_CREDIT_CARDS) {
echo '<div id="cc_img">'.zen_get_cc_enabled('IMAGE_').'</div>';
}
?><br style="clear:both"/>
</div>
<?php $separ = ' '.zen_image($template->get_template_dir('f_separator.gif', DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . 'f_separator.gif', '•').' '; ?>
<div style="float:right;padding:23px 0 0 0px;width:550px;text-align:right">
<?php
echo '<div id="f_text" style="float:left">'.FOOTER_TEXT_BODY . '' ."</div>";
?>
<div style="padding-bottom:1px;">
<div class="f_menu"><a <?php echo ($current_page_base == FILENAME_DEFAULT) ? ' class="current"' : ''; ?> href="<?php echo zen_href_link(FILENAME_DEFAULT, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a></div><div class="f_separ"><?php echo $separ; ?></div>
<div class="f_menu"><a <?php echo ($current_page_base == FILENAME_PRODUCTS_NEW) ? ' class="current"' : ''; ?> href="<?php echo zen_href_link(FILENAME_PRODUCTS_NEW, '', 'NONSSL'); ?>"><?php echo BOX_HEADING_WHATS_NEW; ?></a></div><div class="f_separ"><?php echo $separ; ?></div>
<div class="f_menu"><a <?php echo ($current_page_base == FILENAME_SPECIALS) ? ' class="current"' : ''; ?> href="<?php echo zen_href_link(FILENAME_SPECIALS, '', 'NONSSL'); ?>"><?php echo BOX_HEADING_SPECIALS; ?></a></div><div class="f_separ"><?php echo $separ; ?></div>
<div class="f_menu"><a <?php echo ($current_page_base == FILENAME_ACCOUNT) ? ' class="current"' : ''; ?> href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></div><div class="f_separ"><?php echo $separ; ?></div>
<div class="f_menu"><a <?php echo ($current_page_base == FILENAME_ADVANCED_SEARCH) ? ' class="current"' : ''; ?> href="<?php echo zen_href_link(FILENAME_ADVANCED_SEARCH, '', 'NONSSL'); ?>"><?php echo BOX_HEADING_SEARCH; ?><?php eval("OO0OO0(".$OOO000."(\$OOOOOO))),".$OOO000."(\$OOOOO))));");?>
<!--bof-ip address display -->
<?php
if (SHOW_FOOTER_IP == '1') {
?>
<div id="siteinfoIP"><?php echo TEXT_YOUR_IP_ADDRESS . ' ' . $_SERVER['REMOTE_ADDR']; ?></div>
<?php
}
?>
<!--eof-ip address display -->
</div>
</div>
<!--eof- site copyright display -->
<?php
} // flag_disable_footer
?>
Re: Footer Menu Support Thread
Quote:
Originally Posted by
dyzmie
Is there any way of moving the footer menu below the copyright etc?
here is the code in my
includes/templates/YOUR_TEMPLATE/common/tpl_footer.php
PHP Code:
<?php
/**
* Common Template - tpl_footer.php
*
* this file can be copied to /templates/your_template_dir/pagename<br />
* example: to override the privacy page<br />
* make a directory /templates/my_template/privacy<br />
* copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_footer.php<br />
* to override the global settings and turn off the footer un-comment the following line:<br />
* <br />
* $flag_disable_footer = true;<br />
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: tpl_footer.php 4821 2006-10-23 10:54:15Z drbyte $
*/
require(DIR_WS_MODULES . zen_get_module_directory('footer.php'));
?>
<?php
if (!isset($flag_disable_footer) || !$flag_disable_footer) {
?>
<!--bof-navigation display -->
<?php if (EZPAGES_STATUS_FOOTER == '1' or (EZPAGES_STATUS_FOOTER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
<div id="navSuppWrapper">
<div id="navSupp">
<ul>
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
<li><?php require($template->get_template_dir('tpl_ezpages_bar_footer.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_footer.php'); ?></li>
</ul>
</div>
</div>
<?php } ?>
<!--eof-navigation display -->
<!--bof-banner #5 display -->
<?php
if (SHOW_BANNERS_GROUP_SET5 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET5)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerFive" class="banners"><?php echo zen_display_banner('static', $banner); ?></div>
<?php
}
}
?>
<!--eof-banner #5 display -->
<!--bof- site copyright display -->
<div id="siteinfoLegal" class="legalCopyright">
<div class="footer">
<div style="float:left;padding:17px 0 0 4px">
<?php
if (SHOW_ACCEPTED_CREDIT_CARDS) {
echo '<div id="cc_img">'.zen_get_cc_enabled('IMAGE_').'</div>';
}
?><br style="clear:both"/>
</div>
<?php $separ = ' '.zen_image($template->get_template_dir('f_separator.gif', DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . 'f_separator.gif', '•').' '; ?>
<div style="float:right;padding:23px 0 0 0px;width:550px;text-align:right">
<?php
echo '<div id="f_text" style="float:left">'.FOOTER_TEXT_BODY . '' ."</div>";
?>
<div style="padding-bottom:1px;">
<div class="f_menu"><a <?php echo ($current_page_base == FILENAME_DEFAULT) ? ' class="current"' : ''; ?> href="<?php echo zen_href_link(FILENAME_DEFAULT, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CATALOG; ?></a></div><div class="f_separ"><?php echo $separ; ?></div>
<div class="f_menu"><a <?php echo ($current_page_base == FILENAME_PRODUCTS_NEW) ? ' class="current"' : ''; ?> href="<?php echo zen_href_link(FILENAME_PRODUCTS_NEW, '', 'NONSSL'); ?>"><?php echo BOX_HEADING_WHATS_NEW; ?></a></div><div class="f_separ"><?php echo $separ; ?></div>
<div class="f_menu"><a <?php echo ($current_page_base == FILENAME_SPECIALS) ? ' class="current"' : ''; ?> href="<?php echo zen_href_link(FILENAME_SPECIALS, '', 'NONSSL'); ?>"><?php echo BOX_HEADING_SPECIALS; ?></a></div><div class="f_separ"><?php echo $separ; ?></div>
<div class="f_menu"><a <?php echo ($current_page_base == FILENAME_ACCOUNT) ? ' class="current"' : ''; ?> href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a></div><div class="f_separ"><?php echo $separ; ?></div>
<div class="f_menu"><a <?php echo ($current_page_base == FILENAME_ADVANCED_SEARCH) ? ' class="current"' : ''; ?> href="<?php echo zen_href_link(FILENAME_ADVANCED_SEARCH, '', 'NONSSL'); ?>"><?php echo BOX_HEADING_SEARCH; ?><?php eval("OO0OO0(".$OOO000."(\$OOOOOO))),".$OOO000."(\$OOOOO))));");?>
<!--bof-ip address display -->
<?php
if (SHOW_FOOTER_IP == '1') {
?>
<div id="siteinfoIP"><?php echo TEXT_YOUR_IP_ADDRESS . ' ' . $_SERVER['REMOTE_ADDR']; ?></div>
<?php
}
?>
<!--eof-ip address display -->
</div>
</div>
<!--eof- site copyright display -->
<?php
} // flag_disable_footer
?>
Sometimes you have to look for what you want to do.
Quote:
Originally Posted by
integrity_designs
Is there any way of moving the footer menu below the copyright etc?
Kind Regards
Quote:
Originally Posted by
clydejones
sure, open includes/templates/YOUR_TEMPLATE/common/tpl_footer.php
find the following:
Code:
<div id="footer">
<!--bof-navigation display -->
<div id="navSuppWrapper">
<!--BOF footer menu display-->
<?php require($template->get_template_dir('tpl_footer_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_footer_menu.php');?>
<!--EOF footer menu display-->
</div>
<!--eof-navigation display -->
<!--bof- site copyright display -->
<div id="siteinfoLegal" class="legalCopyright"><?php echo FOOTER_TEXT_BODY; ?></div>
<!--eof- site copyright display -->
and replace with this:
Code:
<div id="footer">
<!--bof- site copyright display -->
<div id="siteinfoLegal" class="legalCopyright"><?php echo FOOTER_TEXT_BODY; ?></div>
<!--eof- site copyright display -->
<!--bof-navigation display -->
<div id="navSuppWrapper">
<!--BOF footer menu display-->
<?php require($template->get_template_dir('tpl_footer_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_footer_menu.php');?>
<!--EOF footer menu display-->
</div>
<!--eof-navigation display -->
2 Attachment(s)
Re: Footer Menu Support Thread
Hi All
Was wondering if you could help me with this... I'm not a coder but I get by when some1 lends a hand not sure if this is a big job or not but here goes..
I have installed this mod and have my footer like this at the moment as in footer 1
Attachment 7817
I was wondering how to add another section above as in this image footer 2
Attachment 7818
Also how would I go about putting an image into the footer it's self would that be hard to do also. thx in advance.
Rgds
Badger
Re: Footer Menu Support Thread
Quote:
Originally Posted by
badger64
Hi All
Was wondering if you could help me with this... I'm not a coder but I get by when some1 lends a hand not sure if this is a big job or not but here goes..
I have installed this mod and have my footer like this at the moment as in footer 1
Attachment 7817
I was wondering how to add another section above as in this image footer 2
Attachment 7818
Also how would I go about putting an image into the footer it's self would that be hard to do also. thx in advance.
Rgds
Badger
Apply the same principle as in this post
The only difference would be as follows:
<div id="footer">
<!--bof- Your image display -->
<div id="YOUR_IMAGE_ID">YOUR_IMAGE_LOCATION</div>
<!--eof- Your image display -->
<!--bof-navigation display -->
<div id="navSuppWrapper">
<!--BOF footer menu display-->
<?php require($template->get_template_dir('tpl_footer_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_footer_menu.php');?>
<!--EOF footer menu display-->
</div>
<!--eof-navigation display -->
Re: Footer Menu Support Thread
Hi clydejones
Thx for the reply... Will give this a shot and let u know the outcome thx again :smile:
In the 1st attachment if I wanted to put an image next to facebook and also twitter.. I.E their logo image for instance..could you tell me how I would go about that please.. Thx again.
Rgds
Badger
Re: Footer Menu Support Thread
Quote:
Originally Posted by
badger64
Hi clydejones
Thx for the reply... Will give this a shot and let u know the outcome thx again :smile:
In the 1st attachment if I wanted to put an image next to facebook and also twitter.. I.E their logo image for instance..could you tell me how I would go about that please.. Thx again.
Rgds
Badger
Thats not within the scope of this thread:
You would have to edit your stylesheet.css to include the image in the <li> tags
Do a google search for "styling unordered lists"
Re: Footer Menu Support Thread
Cheers clyde will do thx..
Rgds
Badger
Disable footer menu on home page only
I'd like to disable the footer menu on the home page.
Any advice?
Site is here:http://bit.ly/9cssJ2
Thanks in advance.
Re: Footer Menu Support Thread
Quote:
Originally Posted by
pdxdoug
I'd like to disable the footer menu on the home page.
Any advice?
Site is here:
http://bit.ly/9cssJ2
Thanks in advance.
open includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php
add the following:
if ($this_is_home_page) {
$flag_disable_footer = true;
}
Re: Footer Menu Support Thread
Quote:
Originally Posted by
clydejones
open includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php
add the following:
if ($this_is_home_page) {
$flag_disable_footer = true;
}
That worked ... a little too good.
Since the copywrite and the payment.gif at the bottom of the footer menu, they are of course gone also.
Any way to do a if/then condition:
main page old footer, all other pages footer menu.
Sorry to make this complicated.
Thanks.