Zen Cart Logo
Forums / All Other Contributions/Addons / Footer Menu Support Thread

Footer Menu Support Thread

Views: 81,578

Results 261 to 280 of 535
9 Jul 2010, 8:20 AM
#261
dyzmie avatar

dyzmie

New Zenner

Join Date:
Jul 2010
Posts:
6
Plugin Contributions:
0

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
/**
 * 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
?>
9 Jul 2010, 1:53 PM
#262
countrycharm avatar

countrycharm

Totally Zenned

Join Date:
Jul 2007
Posts:
2,179
Plugin Contributions:
2

Re: Footer Menu Support Thread

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 /** * 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.

> **integrity\_designs:**
>
> Is there any way of moving the footer  menu below the copyright etc?
> Kind Regards


> **clydejones:**
>
> sure, open  includes/templates/YOUR_TEMPLATE/common/tpl_footer.php
> 
> find the following:
> 
> ```
<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:
> 
> ```
<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 -->
15 Jul 2010, 5:09 PM
#263
badger64 avatar

badger64

New Zenner

Join Date:
Mar 2010
Posts:
41
Plugin Contributions:
0

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

15 Jul 2010, 5:22 PM
#264
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

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 -->
15 Jul 2010, 5:52 PM
#265
badger64 avatar

badger64

New Zenner

Join Date:
Mar 2010
Posts:
41
Plugin Contributions:
0

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

15 Jul 2010, 6:19 PM
#266
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

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"

15 Jul 2010, 7:22 PM
#267
badger64 avatar

badger64

New Zenner

Join Date:
Mar 2010
Posts:
41
Plugin Contributions:
0

Re: Footer Menu Support Thread

Cheers clyde will do thx..

Rgds
Badger

10 Aug 2010, 10:26 PM
#268
pdxdoug avatar

pdxdoug

Zen Follower

Join Date:
Jan 2008
Location:
Portland, Oregon USA
Posts:
356
Plugin Contributions:
0

Re: Footer Menu Support Thread

I'd like to disable the footer menu on the home page.
Any advice?

Site is here:http://bit.ly/9cssJ2

Thanks in advance.

10 Aug 2010, 10:42 PM
#269
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

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;
}

10 Aug 2010, 10:51 PM
#270
pdxdoug avatar

pdxdoug

Zen Follower

Join Date:
Jan 2008
Location:
Portland, Oregon USA
Posts:
356
Plugin Contributions:
0

Re: Footer Menu Support Thread

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.

10 Aug 2010, 11:16 PM
#271
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

pdxdoug:

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.

open includes/templates/YOUR_TEMPLATE/common/tpl_footer.php

find the following section of code and make the highlighted changes.

<!--BOF footer menu display--> <?php if (!$this_is_home_page) { require($template->get_template_dir('tpl_footer_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_footer_menu.php');?>

}

<!--EOF footer menu display-->
11 Aug 2010, 12:48 AM
#272
pdxdoug avatar

pdxdoug

Zen Follower

Join Date:
Jan 2008
Location:
Portland, Oregon USA
Posts:
356
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

open includes/templates/YOUR_TEMPLATE/common/tpl_footer.php

find the following section of code and make the highlighted changes.

<!--BOF footer menu display--> <?php if (!$this_is_home_page) { require($template->get_template_dir('tpl_footer_menu.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_footer_menu.php');?>

}

<!--EOF footer menu display-->

Clyde,
Removed code from tpl_main_page and pasted above code into tpl_footer in place of original statement. No footer at all on any pages with new code.

Any other idea? I can live with the default. I appreciate your time. Thanks.

11 Aug 2010, 2:01 AM
#273
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

pdxdoug:

Clyde,
Removed code from tpl_main_page and pasted above code into tpl_footer in place of original statement. No footer at all on any pages with new code.

Any other idea? I can live with the default. I appreciate your time. Thanks.

Let me work on it.

24 Aug 2010, 4:48 AM
#274
zinnia avatar

zinnia

New Zenner

Join Date:
Aug 2010
Posts:
4
Plugin Contributions:
0

Re: Footer Menu Support Thread

Hello! I hope somebody can help me! I have searched this thread and have found 2 other instances of this problem but there does not appear to be a solution.

I have version 1.3.9 and I have the About_Us mod installed which I also used to create Policies. Everything was working fine until I installed the Footer Menu (which I LOVE!!!). The link works but it does not read correctly. Instead of reading Policies it reads BOX_INFORMATION_POLICIES. Take a look http://www.zinniacottage.com/shop

This is my footer_menu_defines.php

<?php /** * Footer Menu Definitions * * @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 V3.0 * @version $Id: footer_menu_deines.php 1.0 5/9/2009 Clyde Jones $ */ /*BOF Menu Column 1 link Definitions*/ Define('TITLE_ONE', '<li class="menuTitle">Quick Links</li>'); Define('HOME', '<li><a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . HEADER_TITLE_CATALOG . '</a></li>'); Define('FEATURED','<li><a href="' . zen_href_link(FILENAME_FEATURED_PRODUCTS) . '">' . TABLE_HEADING_FEATURED_PRODUCTS . '</a></li>'); Define('SPECIALS', '<li><a href="' . zen_href_link(FILENAME_SPECIALS) . '">' . BOX_HEADING_SPECIALS . '</a></li>'); Define('NEWPRODUCTS', '<li><a href="' . zen_href_link(FILENAME_PRODUCTS_NEW) . '">' . BOX_HEADING_WHATS_NEW . '</a></li>'); Define('ALLPRODUCTS', '<li><a href="' . zen_href_link(FILENAME_PRODUCTS_ALL) . '">' . CATEGORIES_BOX_HEADING_PRODUCTS_ALL . '</a></li>'); /*EOF Menu Column 1 link Definitions*/ /*BOF Menu Column 2 link Definitions*/ Define('TITLE_TWO', '<li class="menuTitle">Information</li>'); Define('ABOUT', '<li><a href="' . zen_href_link(FILENAME_ABOUT_US) . '">' . BOX_INFORMATION_ABOUT_US . '</a></li>'); Define('SITEMAP', '<li><a href="' . zen_href_link(FILENAME_SITE_MAP) . '">' . BOX_INFORMATION_SITE_MAP . '</a></li>'); Define('GVFAQ', '<li><a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a></li>'); Define('COUPON', '<li><a href="' . zen_href_link(FILENAME_DISCOUNT_COUPON) . '">' . BOX_INFORMATION_DISCOUNT_COUPONS . '</a></li>'); Define('UNSUBSCRIBE', '<li><a href="' . zen_href_link(FILENAME_UNSUBSCRIBE) . '">' . BOX_INFORMATION_UNSUBSCRIBE . '</a></li>'); /*EOF Menu Column 2 link Definitions*/ /*BOF Menu Column 3 link Definitions*/ Define('TITLE_THREE', '<li class="menuTitle">Customer Service</li>'); Define('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>'); Define('POLICIES', '<li><a href="' . zen_href_link(FILENAME_POLICIES) . '">' . BOX_INFORMATION_POLICIES . '</a></li>'); Define('PRIVACY', '<li><a href="' . zen_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a></li>'); Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>'); Define('ACCOUNT', '<li><a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>'); /*EOF Menu Column 3 link Definitions*/ /*BOF Menu Column 4 link Definitions*/ Define('TITLE_FOUR', '<li class="menuTitle">Important Links</li>'); /*The actual links are determined by "footer links" set in EZ-Pages *EOF Menu Column 4 link Definitions */ /*BOF Footer Menu Definitions*/ Define('QUICKLINKS', '<dd class="first"> <ul>' . TITLE_ONE . HOME . FEATURED . SPECIALS . NEWPRODUCTS . ALLPRODUCTS . '</ul></dd>'); Define('INFORMATION', '<dd class="second"> <ul>' . TITLE_TWO . ABOUT . SITEMAP . GVFAQ . COUPON . UNSUBSCRIBE . '</ul></dd>'); Define('CUSTOMER_SERVICE', '<dd class="third"> <ul>' . TITLE_THREE . CONTACT . POLICIES . PRIVACY . CONDITIONS . ACCOUNT . '</ul></dd>'); Define('IMPORTANT', '<dd><ul>' . TITLE_FOUR); Define('IMPORTANT_END', '</ul></dd>'); /*EOF Footer Menu Definitions*/ //EOF This is my policies.php <?php /** * @package languageDefines * @copyright Copyright 2003-2006 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: policies.php v1.3 $ */ // this is used to display the text link in the "information" or other sidebox define('BOX_INFORMATION_POLICIES', 'Policies'); ?>

I have checked over and over and everything is located where it should be. As I said, all the links were fine before I installed the Footer Menu.

Anyway, I would appreciate any help I can get with this. Please let me know if you need any further information.

Thanks a bunch!

24 Aug 2010, 5:05 AM
#275
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

zinnia:

Hello! I hope somebody can help me! I have searched this thread and have found 2 other instances of this problem but there does not appear to be a solution.

This is my policies.php

<?php /** * @package languageDefines * @copyright Copyright 2003-2006 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: policies.php v1.3 $ */ // this is used to display the text link in the "information" or other sidebox define('BOX_INFORMATION_POLICIES', 'Policies'); ?>

I have checked over and over and everything is located where it should be. As I said, all the links were fine before I installed the Footer Menu.

Anyway, I would appreciate any help I can get with this. Please let me know if you need any further information.

Thanks a bunch!

Where do you have the file located which contains this define statement? ( i.e. includes/languages/english/extra_definitions/YOUR_TEMPLATE/ )

24 Aug 2010, 5:08 AM
#276
zinnia avatar

zinnia

New Zenner

Join Date:
Aug 2010
Posts:
4
Plugin Contributions:
0

Re: Footer Menu Support Thread

Thanks for the quick response!! That is exactly where it is.

24 Aug 2010, 5:13 AM
#277
zinnia avatar

zinnia

New Zenner

Join Date:
Aug 2010
Posts:
4
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

Where do you have the file located which contains this define statement? ( i.e. includes/languages/english/extra_definitions/YOUR_TEMPLATE/ )

I just triple checked to be sure and YES that is precisely where it is located.

24 Aug 2010, 5:19 AM
#278
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

zinnia:

Thanks for the quick response!! That is exactly where it is.

zinnia:

I just triple checked to be sure and YES that is precisely where it is located.

open includes/languages/YOUR_TEMPLATE/english.php

insert the just definition somewhere in that file.

define('BOX_INFORMATION_POLICIES', 'Policies');

24 Aug 2010, 5:24 AM
#279
zinnia avatar

zinnia

New Zenner

Join Date:
Aug 2010
Posts:
4
Plugin Contributions:
0

Re: Footer Menu Support Thread

clydejones:

open includes/languages/YOUR_TEMPLATE/english.php

insert the just definition somewhere in that file.

define('BOX_INFORMATION_POLICIES', 'Policies');

YOU ARE AMAZING!!!!! I just randomly stuck it in and it worked!!! I can't thank you enough! I've spent the better part of today on this issue alone. Thanks a heap!

24 Aug 2010, 5:29 AM
#280
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Footer Menu Support Thread

zinnia:

YOU ARE AMAZING!!!!! I just randomly stuck it in and it worked!!! I can't thank you enough! I've spent the better part of today on this issue alone. Thanks a heap!

Glad you got it sorted.