Thread: The CabinetGuy

Page 4 of 5 FirstFirst ... 2345 LastLast
Results 31 to 40 of 43
  1. #31
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: The CabinetGuy

    You also have 10000 products and the 1 special in the sidebox ... and going to the Specials page get 1 Special and a broken page ... how many specials do you really have?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  2. #32
    Join Date
    Feb 2008
    Location
    Tx gulf coast
    Posts
    126
    Plugin Contributions
    0

    Default Re: The CabinetGuy

    Quote Originally Posted by Ajeh View Post
    Are you using USPS only for First Class?

    What are you using Zone Rates for?
    I have turned it off again. It was not normally active.

    Keith

  3. #33
    Join Date
    Feb 2008
    Location
    Tx gulf coast
    Posts
    126
    Plugin Contributions
    0

    Default Re: The CabinetGuy

    Quote Originally Posted by Ajeh View Post
    You also have 10000 products and the 1 special in the sidebox ... and going to the Specials page get 1 Special and a broken page ... how many specials do you really have?
    1 special

  4. #34
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: The CabinetGuy

    Just as a test, can you turn off the Specials sidebox?

    What about the USPS are you only using it for First Class shipping?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  5. #35
    Join Date
    Feb 2008
    Location
    Tx gulf coast
    Posts
    126
    Plugin Contributions
    0

    Default Re: The CabinetGuy

    i am now running no specials and yes, i only ship USPS 1st Class.

    thx

  6. #36
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: The CabinetGuy

    If you only use USPS on 13oz orders, then you could customize it not to even get the quote for larger orders with the code in RED:
    Code:
        // disable only when entire cart is free shipping
        if (zen_get_shipping_enabled($this->code)) {
          $this->enabled = ((MODULE_SHIPPING_USPS_STATUS == 'True') ? true : false);
        }
    
        if (!IS_ADMIN_FLAG) {
          global $cart;
          if ($_SESSION['cart']->show_weight() > 0.8125) {
            $this->enabled = false;
          }
        }
    Then, you do not waste time on the quote and do not see that USPS at all with the error message ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  7. #37
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: The CabinetGuy

    Could you check the file:
    /includes/modules/footer.php

    and see if it is current and up to date?

    It is missing some of the data on the Parse time display ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  8. #38
    Join Date
    Feb 2008
    Location
    Tx gulf coast
    Posts
    126
    Plugin Contributions
    0

    Default Re: The CabinetGuy

    Quote Originally Posted by Ajeh View Post
    Could you check the file:
    /includes/modules/footer.php

    and see if it is current and up to date?

    It is missing some of the data on the Parse time display ...
    if (!defined('IS_ADMIN_FLAG')) {

    die('Illegal Access');

    }

    $time_start = explode(' ', PAGE_PARSE_START_TIME);

    $time_end = explode(' ', microtime());

    $parse_time = number_format(($time_end[1] + $time_end[0] - ($time_start[1] + $time_start[0])), 3);



    if (STORE_PAGE_PARSE_TIME == 'true') {

    error_log(strftime(STORE_PARSE_DATE_TIME_FORMAT) . ' - ' . $_SERVER['REQUEST_URI'] . ' (' . $parse_time . 's)' . "\n", 3, STORE_PAGE_PARSE_TIME_LOG);

    }

    ?>

  9. #39
    Join Date
    Feb 2008
    Location
    Tx gulf coast
    Posts
    126
    Plugin Contributions
    0

    Default Re: The CabinetGuy

    Quote Originally Posted by Ajeh View Post
    If you only use USPS on 13oz orders, then you could customize it not to even get the quote for larger orders with the code in RED:
    Code:
        // disable only when entire cart is free shipping
        if (zen_get_shipping_enabled($this->code)) {
          $this->enabled = ((MODULE_SHIPPING_USPS_STATUS == 'True') ? true : false);
        }
    
        if (!IS_ADMIN_FLAG) {
          global $cart;
          if ($_SESSION['cart']->show_weight() > 0.8125) {
            $this->enabled = false;
          }
        }
    Then, you do not waste time on the quote and do not see that USPS at all with the error message ...
    Sometimes, I turn on the priority mail if I need to for a customer situation... What effect will this have on doing that?

    Keith

  10. #40
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: The CabinetGuy

    Yes it would as the code is designed to turn it off if the weight is over 13oz ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

 

 
Page 4 of 5 FirstFirst ... 2345 LastLast

Similar Threads

  1. How can I change the font color of the links in the lower part fo the header
    By Marlake in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 29 Jul 2011, 06:00 PM
  2. How would I move the template all the way to the right and fix an image to the
    By pityocamptes in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 15 Sep 2010, 05:45 AM
  3. How do I *tighten up* the space between the header and the start of the content.
    By comicart in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 16 Sep 2008, 05:08 PM
  4. Why is the description in the browser different from the item on the page?
    By GGWS in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 27 Jul 2007, 03:15 PM
  5. Where is the part in CSS to change the color of the middle part of the background?
    By drbarnet in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 29 Jul 2006, 08:12 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