Page 22 of 54 FirstFirst ... 12202122232432 ... LastLast
Results 211 to 220 of 535
  1. #211
    Join Date
    Mar 2009
    Location
    Australia
    Posts
    604
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    HI all,

    My Site is live while I work on some things.

    yodgee.com.au

    I'm having an issue with the footer MOD showing a link as

    BOX_INFORMATION_ABOUT_US

    I tried below about a week ago.

    ANY IDEAS?????

    I tried adding the line of code as suggested:

    Define('BOX_INFORMATION_ABOUT_US', 'About Us');

    where suggested in the file but no luck.

    I also assumed you meant inside my template folder.

    includes/languages/english/extra_definitions/MY_TEMPLATE/footer_menu_defines.php

    Unfortunately, no go
    That wasn't the plan!

  2. #212
    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 Muzz View Post
    HI all,

    My Site is live while I work on some things.

    yodgee.com.au

    I'm having an issue with the footer MOD showing a link as

    BOX_INFORMATION_ABOUT_US

    I tried below about a week ago.

    ANY IDEAS?????

    I tried adding the line of code as suggested:

    Define('BOX_INFORMATION_ABOUT_US', 'About Us');

    where suggested in the file but no luck.

    I also assumed you meant inside my template folder.

    includes/languages/english/extra_definitions/MY_TEMPLATE/footer_menu_defines.php

    Unfortunately, no go
    Have you installed the about us page mod ( www.zen-cart.com/index.php?main_page=product_contrib_info&products_id=182 )

  3. #213
    Join Date
    Mar 2009
    Location
    Australia
    Posts
    604
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Yes I have.

    I'm going to re install it now though again and let you know if anything changed.
    That wasn't the plan!

  4. #214
    Join Date
    Mar 2009
    Location
    Australia
    Posts
    604
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    I reinstalled the About US mod.

    I ONLY copied the files and renames custom folders etc..

    No other modifications where made.

    The link actually works.. it just displays the title wrong.
    That wasn't the plan!

  5. #215
    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 Muzz View Post
    I reinstalled the About US mod.

    I ONLY copied the files and renames custom folders etc..

    No other modifications where made.

    The link actually works.. it just displays the title wrong.
    Sounds like you're missing one of the language files for the about us mod.

    Check and make sure you have the following installed

    includes/languages/english/extra_definitions/about_us.php

    OR

    includes/languages/english/extra_definitions/YOUR_TEMPLATE/about_us.php

  6. #216
    Join Date
    Mar 2009
    Location
    Australia
    Posts
    604
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    HI I checked my files.

    I have the about us file here:

    includes/languages/english/extra_definitions/YOUR_TEMPLATE/about_us.php

    The code is below.

    <?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: about_us.php v1.3 $

    */



    // this is used to display the text link in the "information" or other sidebox

    define('BOX_INFORMATION_ABOUT_US', 'About Us');



    ?>

    I'd like to get this working but if not then remove the link all together.
    Last edited by Muzz; 6 May 2010 at 01:46 AM.
    That wasn't the plan!

  7. #217
    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 Muzz View Post
    HI I checked my files.

    I have the about us file here:

    includes/languages/english/extra_definitions/YOUR_TEMPLATE/about_us.php

    The code is below.

    <?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: about_us.php v1.3 $

    */



    // this is used to display the text link in the "information" or other sidebox

    define('BOX_INFORMATION_ABOUT_US', 'About Us');



    ?>

    I'd like to get this working but if not then remove the link all together.
    To delete
    open includes/languages/english/extra_definitions/YOUR_TEMPLATE/footer_menu_defines.php

    find and comment out the following define statement.

    Code:
    Define('ABOUT', '<li><a href="' . zen_href_link(FILENAME_ABOUT_US) . '">' . BOX_INFORMATION_ABOUT_US . '</a></li>');
    find the following define statement and delete the highlighted portion

    Define('INFORMATION', '<dd class="second">
    <ul>' . TITLE_TWO . ABOUT . SITEMAP . GVFAQ . COUPON . UNSUBSCRIBE . '</ul></dd>');

  8. #218
    Join Date
    Mar 2009
    Location
    Australia
    Posts
    604
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Forgot to say thanks for the info..
    I think the problem is caused from a conflict. I think I installed the about us module already a while back...

    Turned off now and sorted. thanks
    That wasn't the plan!

  9. #219
    Join Date
    Jun 2009
    Posts
    617
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Hi Clyde,

    Absolutely great module! Couple of questions:

    I am currently using only 2 columns of the original 4 and I have them aligned over to the right, in the navSuppWrapper - which is a light gray area on my site. I'd like to keep the 2 columns positioned over to the right BUT also be able to put some other coding on the left side of the navSuppWrapper. It seems the way that I did simply pushes the 2 columns over to the right and STILL takes up the whole navSuppWrapper. Could you tell me how to do that via css in the stylesheet_footer_menu.css?

    So I guess said another much simple way, is, is there a way to push the Footer Menu to the right side of the navSuppWrapper and still be able to put other code on the left side of it?

    Please feel free to PM if you need a link to my site or the stylesheet_footer_menu.css - I'm not quite 'live' yet and so its down for maintenance.

    Any ideas/suggestions are greatly appreciated.
    Thank you,
    autoace

  10. #220
    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 autoace View Post
    Hi Clyde,

    Absolutely great module! Couple of questions:

    I am currently using only 2 columns of the original 4 and I have them aligned over to the right, in the navSuppWrapper - which is a light gray area on my site. I'd like to keep the 2 columns positioned over to the right BUT also be able to put some other coding on the left side of the navSuppWrapper. It seems the way that I did simply pushes the 2 columns over to the right and STILL takes up the whole navSuppWrapper. Could you tell me how to do that via css in the stylesheet_footer_menu.css?

    So I guess said another much simple way, is, is there a way to push the Footer Menu to the right side of the navSuppWrapper and still be able to put other code on the left side of it?

    Please feel free to PM if you need a link to my site or the stylesheet_footer_menu.css - I'm not quite 'live' yet and so its down for maintenance.

    Any ideas/suggestions are greatly appreciated.
    PM me the link to your site.

 

 
Page 22 of 54 FirstFirst ... 12202122232432 ... 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