Results 1 to 4 of 4
  1. #1
    Join Date
    Nov 2009
    Posts
    2
    Plugin Contributions
    0

    Default Problem with removing links from information box

    Hello there!

    In my fresh install of zencart, I would like to remove some links from the information sidebox, particularly "Gift Certificate FAQ, Discount Coupons, Newsletter Unsubscribe"

    I can't find where to turn them off in the Admin > Configuration > Define Page Status area. Is there anywhere else I can be looking?

    Thanks for your help!

  2. #2
    Join Date
    Mar 2007
    Location
    AZ
    Posts
    1,911
    Plugin Contributions
    2

    Default Re: Problem with removing links from information box

    The Tutorials/FAQ tab above provides lot of guidance.

    Turn off gift certificates:

    Admin> Modules> Order Totals> Gift Certificates> uninstall

    Turn off gift certificates:
    Admin> Modules> Order Totals> Discount Coupons> unistall

    Remove Newsletter Unsubscribe:

    Go to Configuration > Email Options > Display 'Newsletter Unsubscribe' Link

    Then go to Configuration > Customer Details > Show Newsletter Checkbox -- This will remove the subscription checkbox on the new account signup page (although the title still says 'Newsletter and Email Details', you will have to change the code to remove that)

    Tina

  3. #3
    Join Date
    Oct 2009
    Posts
    5
    Plugin Contributions
    0

    Default Re: Problem with removing links from information box

    Now I have another question.
    What if I don't want to uninstall the Gift Certificate Module but I just don't want the Link in the information box?

    My guess is that I'll have to modify the code in the sidebox.
    In modules/sideboxes/information.php:
    Code:
      // only show GV FAQ when installed
      if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') {
        $information[] = '<a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a>';
      }
    So if GV FAQ is installed but I don't want the link thenI have to comment that code out.
    Code:
      // only show GV FAQ when installed
    //  if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') {
    //    $information[] = '<a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a>';
    //  }

  4. #4
    Join Date
    Nov 2009
    Posts
    2
    Plugin Contributions
    0

    Default Re: Problem with removing links from information box

    Quote Originally Posted by charmedbytina2 View Post
    The Tutorials/FAQ tab above provides lot of guidance.

    Turn off gift certificates:

    Admin> Modules> Order Totals> Gift Certificates> uninstall

    Turn off gift certificates:
    Admin> Modules> Order Totals> Discount Coupons> unistall

    Remove Newsletter Unsubscribe:

    Go to Configuration > Email Options > Display 'Newsletter Unsubscribe' Link

    Then go to Configuration > Customer Details > Show Newsletter Checkbox -- This will remove the subscription checkbox on the new account signup page (although the title still says 'Newsletter and Email Details', you will have to change the code to remove that)

    Tina
    YAY! It worked! Thanks so much Tina for your help. I really appreciate it. I must have overlooked it in the FAQ section when I was looking for the answer.

 

 

Similar Threads

  1. Removing links from the information sidebox
    By Rabarbervin in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 13 Nov 2010, 01:56 AM
  2. Removing Links From Information Sidebox - A Basic Guide
    By arpeggio in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 2 Sep 2007, 07:45 PM

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