Page 27 of 54 FirstFirst ... 17252627282937 ... LastLast
Results 261 to 270 of 535
  1. #261
    Join Date
    Jul 2010
    Posts
    6
    Plugin Contributions
    0

    Default 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 '&nbsp;'.zen_image($template->get_template_dir('f_separator.gif'DIR_WS_TEMPLATE$current_page_base,'images'). '/' 'f_separator.gif''&bull;').'&nbsp;'?>
    <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
    ?>

  2. #262
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by dyzmie View Post
    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 '&nbsp;'.zen_image($template->get_template_dir('f_separator.gif'DIR_WS_TEMPLATE$current_page_base,'images'). '/' 'f_separator.gif''&bull;').'&nbsp;'?>
    <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 View Post
    Is there any way of moving the footer menu below the copyright etc?
    Kind Regards

    Quote Originally Posted by clydejones View Post
    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 -->
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  3. #263
    Join Date
    Mar 2010
    Posts
    41
    Plugin Contributions
    0

    Default 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

    Click image for larger version. 

Name:	footer1.jpg 
Views:	170 
Size:	7.7 KB 
ID:	7817

    I was wondering how to add another section above as in this image footer 2

    Click image for larger version. 

Name:	footer2.jpg 
Views:	156 
Size:	16.7 KB 
ID:	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

  4. #264
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by badger64 View Post
    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

    Click image for larger version. 

Name:	footer1.jpg 
Views:	170 
Size:	7.7 KB 
ID:	7817

    I was wondering how to add another section above as in this image footer 2

    Click image for larger version. 

Name:	footer2.jpg 
Views:	156 
Size:	16.7 KB 
ID:	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 -->

  5. #265
    Join Date
    Mar 2010
    Posts
    41
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Hi clydejones

    Thx for the reply... Will give this a shot and let u know the outcome thx again

    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

  6. #266
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by badger64 View Post
    Hi clydejones

    Thx for the reply... Will give this a shot and let u know the outcome thx again

    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"

  7. #267
    Join Date
    Mar 2010
    Posts
    41
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Cheers clyde will do thx..

    Rgds
    Badger

  8. #268
    Join Date
    Jan 2008
    Location
    Portland, Oregon USA
    Posts
    356
    Plugin Contributions
    0

    Default 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.
    Doug

  9. #269
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by pdxdoug View Post
    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;
    }

  10. #270
    Join Date
    Jan 2008
    Location
    Portland, Oregon USA
    Posts
    356
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by clydejones View Post
    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.
    Doug

 

 
Page 27 of 54 FirstFirst ... 17252627282937 ... LastLast

Similar Threads

  1. v154 Flexible Footer Menu Multilingual [Support Thread]
    By rbarbour in forum All Other Contributions/Addons
    Replies: 130
    Last Post: 1 Jun 2025, 02:18 PM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 20
    Last Post: 23 Apr 2025, 08:49 AM
  3. Category Tab Simple Dropdown Menu 1.3.9 Support Thread
    By dbltoe in forum All Other Contributions/Addons
    Replies: 46
    Last Post: 30 Mar 2024, 06:12 PM
  4. adding links to top menu and footer menu
    By satrina in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 7 Nov 2012, 10:17 PM
  5. Easy way to edit header/top menu, footer menu, and sidebar menu?
    By templar2 in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 30 Jun 2009, 11:14 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR