Page 51 of 54 FirstFirst ... 414950515253 ... LastLast
Results 501 to 510 of 535
  1. #501
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,606
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    I have tried using the web address that you provide and it doesn't pull up.

  2. #502
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by bkeaton View Post
    I have tried using the web address that you provide and it doesn't pull up.
    It won't work if you copied and pasted the URL and did not take out the spaces that I put in it to prevent it from becoming a clickable link.. Otherwise that site is alive and well..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  3. #503
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Footer Menu Support Thread

    I wanted to make sure I included ALL the changes I made to the includes/languages/english/extra_definitions/MY_TEMPLATE/footer_menu_defines.php file. So let me try posting my issue again with the updated information..

    See this site: http : // clientmybeautyaddiction . overthehillweb . com (REMOVE SPACES FROM URL)

    In the Information sidebox is a link to the Payment Policy defined page. The page link shows up just fine in the Information sidebox, but in the footer menu it behaves as if I am missing a language file. I am a little stumped as to why..

    Here's what the third column code in the includes/languages/english/extra_definitions/MY_TEMPLATE/footer_menu_defines.php file looks like:
    Code:
    /*BOF Menu Column 3 link Definitions*/
    Define('TITLE_THREE', '<li class="menuTitle">Customer Service</li>');
    Define('SHIPPING', '<li><a href="' . zen_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a></li>');
    Define('PAYMENTPOLICY', '<li><a href="' . zen_href_link(FILENAME_PAYMENTPOLICY) . '">' . BOX_INFORMATION_PAYMENTPOLICY . '</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('CONTACT','<li><a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a></li>');
    //Define('ACCOUNT', '<li><a href="' . zen_href_link(FILENAME_ACCOUNT, '', 'SSL') .'">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>');
    Define('ACCOUNT', '');
    /*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 . SHIPPING . PAYMENTPOLICY . PRIVACY . CONDITIONS . CONTACT . ACCOUNT . '</ul></dd>');
    Define('IMPORTANT', '<dd><ul>' . TITLE_FOUR);
    Define('IMPORTANT_END', '</ul></dd>');
    /*EOF Footer Menu Definitions*/
    Here's the code from the Information sidebox file (includes/modules/sideboxes/custom_template/information.php):
    Code:
      if (DEFINE_PAYMENTPOLICY_STATUS <= 1) {
        $information[] = '<a href="' . zen_href_link(FILENAME_PAYMENTPOLICY) . '">' . BOX_INFORMATION_PAYMENTPOLICY . '</a>';
      }
    What gives?? What did I do wrong??
    Last edited by DivaVocals; 29 Apr 2012 at 02:16 PM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  4. #504
    Join Date
    Aug 2007
    Location
    Amarillo, Tx
    Posts
    1,606
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Well I have taken a look and I have no idea what to do. Sorry about that.

  5. #505
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Footer Menu Support Thread

    Both links work correctly, it's just the text display in the footer that is not picking up the define. Have you checked in Tools > Developers Toolkit on what files use/define that constant? I would suggest that the define is only happening when the sidebox is processed, but since that should be before the footer, and I don't see why an already-defined constant should be unset during page processing, I am also stumped on why it is happening. For a workaround, you could make a new define like FOOTER_PAYMENTPOLICY.

  6. #506
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by gjh42 View Post
    Both links work correctly, it's just the text display in the footer that is not picking up the define. Have you checked in Tools > Developers Toolkit on what files use/define that constant? I would suggest that the define is only happening when the sidebox is processed, but since that should be before the footer, and I don't see why an already-defined constant should be unset during page processing, I am also stumped on why it is happening. For a workaround, you could make a new define like FOOTER_PAYMENTPOLICY.
    Weird.. Checked with the Developer's Toolkit... No other defines use that same constant.. I created a new define as you suggested, and now "FOOTER_PAYMENTPOLICY" shows instead of "Payment Policy".. I know I could just hard code the correct text in here, but this SHOULD work and I would prefer to NOT hardcode the text in if at all possible.. Call it me being anal.. Wish I knew why this isn't working..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

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

    Default Re: Footer Menu Support Thread

    Hi Diva I transform the about_us page into a payment policy module and use it to test this out. I use the links you provided and use the new module links in the footer. I get the same problems as you. It has something to do with the footer_menu. I have been looking at this for a while now. I will look some more tomorrow and let you know if I find a solution.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  8. #508
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Footer Menu Support Thread

    Still struggling to figure out why this doesn't work.. I REALLY don't want to hard code in the text.. grrrrrrrrrrrrrrrrrrrrrrrrrr...........

    Quote Originally Posted by DivaVocals View Post
    Weird.. Checked with the Developer's Toolkit... No other defines use that same constant.. I created a new define as you suggested, and now "FOOTER_PAYMENTPOLICY" shows instead of "Payment Policy".. I know I could just hard code the correct text in here, but this SHOULD work and I would prefer to NOT hardcode the text in if at all possible.. Call it me being anal.. Wish I knew why this isn't working..
    Quote Originally Posted by countrycharm View Post
    Hi Diva I transform the about_us page into a payment policy module and use it to test this out. I use the links you provided and use the new module links in the footer. I get the same problems as you. It has something to do with the footer_menu. I have been looking at this for a while now. I will look some more tomorrow and let you know if I find a solution.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  9. #509
    Join Date
    Mar 2012
    Posts
    33
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Hello, how do I remove reference to "Newsletter Unsubscribe" under Information in the Footer.
    I also want to remove "Featured Products" and "Specials" from the Quick Links in the Footer.
    I am using the Upscale Boutique template.

  10. #510
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    6,173
    Plugin Contributions
    0

    Default Re: Footer Menu Support Thread

    Quote Originally Posted by iceni11 View Post
    Hello, how do I remove reference to "Newsletter Unsubscribe" under Information in the Footer.
    I also want to remove "Featured Products" and "Specials" from the Quick Links in the Footer.
    I am using the Upscale Boutique template.
    Please look at your earlier post, I made a reply to ...

 

 
Page 51 of 54 FirstFirst ... 414950515253 ... 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