Page 50 of 79 FirstFirst ... 40484950515260 ... LastLast
Results 491 to 500 of 790
  1. #491
    Join Date
    Jan 2012
    Location
    The Netherlands
    Posts
    20
    Plugin Contributions
    0

    Default Re: Andover Modern Template Support Thread

    Hello Anne,

    To disable the "Gift certificate FAQ" and "Discount coupons" options in the footer menu, I modified the file footer_menu_defines.php in the "extra_definitions" map according to the code in the file information.php file in the sideboxes map:

    // only show GV FAQ when installed

    if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') {
    Define('GVFAQ', '<li><a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a></li>');
    } else {
    Define('GVFAQ', '');
    }

    // only show Discount Coupon FAQ when installed

    if (DEFINE_DISCOUNT_COUPON_STATUS <= 1 && MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') {
    Define('COUPON', '<li><a href="' . zen_href_link(FILENAME_DISCOUNT_COUPON) . '">' . BOX_INFORMATION_DISCOUNT_COUPONS . '</a></li>');
    } else {
    Define('COUPON','');
    }

  2. #492
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Andover Modern Template Support Thread

    Quote Originally Posted by Gimondi View Post
    Hello Anne,

    To disable the "Gift certificate FAQ" and "Discount coupons" options in the footer menu, I modified the file footer_menu_defines.php in the "extra_definitions" map according to the code in the file information.php file in the sideboxes map:

    // only show GV FAQ when installed

    if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') {
    Define('GVFAQ', '<li><a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a></li>');
    } else {
    Define('GVFAQ', '');
    }

    // only show Discount Coupon FAQ when installed

    if (DEFINE_DISCOUNT_COUPON_STATUS <= 1 && MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') {
    Define('COUPON', '<li><a href="' . zen_href_link(FILENAME_DISCOUNT_COUPON) . '">' . BOX_INFORMATION_DISCOUNT_COUPONS . '</a></li>');
    } else {
    Define('COUPON','');
    }
    Thank you for posting your solution ;-)

    Thanks,

    Anne

  3. #493
    Join Date
    Jan 2012
    Posts
    17
    Plugin Contributions
    0

    Default Re: Andover Modern Template Support Thread

    Hi.
    Thanks for the great template. It has helped me a lot in what I was trying to do.

    I wanted to know how to create a custom sidebox with pictures in it. I have managed to do one using the banner sidebox and uploading my picture to the banners, but i would like to do one to add pictures of 'visa,mastercard' payment options pictures etc.

    Another thing i would like to know, i tried adding google translate code to the index.php and it works fine but it is at the very bottom of the website. What i would like to know is if i can add this code to a sidebox and if it would be applied to the rest of the website.

    I tried to search through the forum but i did not find any info on that.

    Thanks a lot for the support.
    Rishi

  4. #494
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Andover Modern Template Support Thread

    Quote Originally Posted by maniacXD View Post
    Hi.
    Thanks for the great template. It has helped me a lot in what I was trying to do.

    I wanted to know how to create a custom sidebox with pictures in it. I have managed to do one using the banner sidebox and uploading my picture to the banners, but i would like to do one to add pictures of 'visa,mastercard' payment options pictures etc.

    Another thing i would like to know, i tried adding google translate code to the index.php and it works fine but it is at the very bottom of the website. What i would like to know is if i can add this code to a sidebox and if it would be applied to the rest of the website.

    I tried to search through the forum but i did not find any info on that.

    Thanks a lot for the support.
    Rishi
    There is a module in the free addons section that will add your cc payment icons.

    There is also a module for the google translator.

    Thanks,

    Anne

  5. #495
    Join Date
    Sep 2011
    Posts
    81
    Plugin Contributions
    0

    Default Re: Andover Modern Template Support Thread

    Quote Originally Posted by Gimondi View Post
    Hello Anne,

    To disable the "Gift certificate FAQ" and "Discount coupons" options in the footer menu, I modified the file footer_menu_defines.php in the "extra_definitions" map according to the code in the file information.php file in the sideboxes map:

    // only show GV FAQ when installed

    if (MODULE_ORDER_TOTAL_GV_STATUS == 'true') {
    Define('GVFAQ', '<li><a href="' . zen_href_link(FILENAME_GV_FAQ) . '">' . BOX_INFORMATION_GV . '</a></li>');
    } else {
    Define('GVFAQ', '');
    }

    // only show Discount Coupon FAQ when installed

    if (DEFINE_DISCOUNT_COUPON_STATUS <= 1 && MODULE_ORDER_TOTAL_COUPON_STATUS == 'true') {
    Define('COUPON', '<li><a href="' . zen_href_link(FILENAME_DISCOUNT_COUPON) . '">' . BOX_INFORMATION_DISCOUNT_COUPONS . '</a></li>');
    } else {
    Define('COUPON','');
    }

    where will i find this please?

  6. #496
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Andover Modern Template Support Thread

    Quote Originally Posted by rabbitnutrition View Post
    where will i find this please?
    includes/languages/english/extra_definitions/andover_modern

    Thanks,

    Anne

  7. #497
    Join Date
    Sep 2011
    Posts
    81
    Plugin Contributions
    0

    Default Re: Andover Modern Template Support Thread

    thank you
    i'm there so do i just delete the words "gift certificates and discount coupons"?
    sorry to sound so dumb i'm nearly finished now and so pleased with myself. just a little bit more tweaking

  8. #498
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Andover Modern Template Support Thread

    Quote Originally Posted by rabbitnutrition View Post
    thank you
    i'm there so do i just delete the words "gift certificates and discount coupons"?
    sorry to sound so dumb i'm nearly finished now and so pleased with myself. just a little bit more tweaking
    You need to delete the links and the define statements at the bottom of the file.

    Thanks,

    Anne

  9. #499
    Join Date
    Sep 2011
    Posts
    81
    Plugin Contributions
    0

    Default Re: Andover Modern Template Support Thread

    ok did that (or tried to) this is what's just happened
    please help
    Server error
    The website encountered an error while retrieving http://www.rabbitnutrition.co.uk/sho...php?main_page=. It may be down for maintenance or configured incorrectly.
    Here are some suggestions:
    Reload this web page later.
    HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfil the request.

  10. #500
    Join Date
    Sep 2011
    Posts
    81
    Plugin Contributions
    0

    Default Re: Andover Modern Template Support Thread

    you can see what i did (obviously wrong) here:
    where it begins... Define('GVFAQ', you can see what i've deleted.
    please can you give me the code so i can put it back in and hopefully it will work again

    /*OF 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', '<'">' '</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*/

 

 
Page 50 of 79 FirstFirst ... 40484950515260 ... LastLast

Similar Threads

  1. Scuro Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 11
    Last Post: 12 Mar 2015, 09:45 PM
  2. v151 Andover Modern - Site rebuild Problems
    By Rizla in forum Addon Templates
    Replies: 4
    Last Post: 4 May 2014, 09:49 AM
  3. Rustic Template Support Thread
    By clydejones in forum Addon Templates
    Replies: 320
    Last Post: 20 May 2013, 10:47 AM
  4. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 PM
  5. Wallet Template - Support Thread
    By zami in forum Addon Templates
    Replies: 45
    Last Post: 25 Mar 2010, 10:15 PM

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