Results 1 to 10 of 10
  1. #1
    Join Date
    May 2006
    Location
    UK
    Posts
    32
    Plugin Contributions
    0

    Default Checkout success page - 'shipping method' is 'Shipping' rather than 'Free Shipping'

    After upgrade from v137 to v138, I found that on the checkout success page, the shipping methods shows 'Shipping' rather than 'Free Shipping' when it is activated for orders over certain amount of value.

    In addition, there is no payment method name under payment method title for gift certificate purchases. It does display for cc payment and money orders.

    Any help is greatly appreciated. Thank you for your attention.

    To be simple and genuine - we are naturally the same.
    Review My Zen Cart Shop - Clothing & Accessories Wholesale , Silk Store , Studio Flash Lights

  2. #2
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Checkout success page - 'shipping method' is 'Shipping' rather than 'Free Shippin

    If you install a fresh v1.3.8 in another folder and database, can you replicate the problem?
    If not, then you've missed one or more things in your upgrade.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #3
    Join Date
    May 2006
    Location
    UK
    Posts
    32
    Plugin Contributions
    0

    Default Re: Checkout success page - 'shipping method' is 'Shipping' rather than 'Free Shippin

    I have done a fresh install on another folder and the same happens again. As you can see in the screen print follow the link below. Thanks.
    To be simple and genuine - we are naturally the same.
    Review My Zen Cart Shop - Clothing & Accessories Wholesale , Silk Store , Studio Flash Lights

  4. #4
    Join Date
    May 2006
    Location
    UK
    Posts
    32
    Plugin Contributions
    0

    Default Re: Checkout success page - 'shipping method' is 'Shipping' rather than 'Free Shippin

    The php version is 5.2.0, MySQL is v5.0.27 . This happens at localhost server.
    To be simple and genuine - we are naturally the same.
    Review My Zen Cart Shop - Clothing & Accessories Wholesale , Silk Store , Studio Flash Lights

  5. #5
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Checkout success page - 'shipping method' is 'Shipping' rather than 'Free Shippin

    I don't see this on a fresh install.

    Please explain how you have configured your shipping and payment choices, and list any addons you've installed.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  6. #6
    Join Date
    May 2006
    Location
    UK
    Posts
    32
    Plugin Contributions
    0

    Default Re: Checkout success page - 'shipping method' is 'Shipping' rather than 'Free Shippin

    I did not install any adons for the fresh install. I just copied the whole new v138 files into the local server directory, then install, rather than using FTP upload. Will this problem caused by not using FTP upload?
    To be simple and genuine - we are naturally the same.
    Review My Zen Cart Shop - Clothing & Accessories Wholesale , Silk Store , Studio Flash Lights

  7. #7
    Join Date
    May 2006
    Location
    UK
    Posts
    32
    Plugin Contributions
    0

    Default Re: Checkout success page - 'shipping method' is 'Shipping' rather than 'Free Shippin

    The configuaration I've done is at admin -> modules -> order total -> shipping:

    Order Shipping Cost
    This module is installed
    true
    Sort Order
    200
    Allow Free Shipping
    true
    Free Shipping For Orders Over
    £30.00
    Provide Free Shipping For Orders Made
    national
    To be simple and genuine - we are naturally the same.
    Review My Zen Cart Shop - Clothing & Accessories Wholesale , Silk Store , Studio Flash Lights

  8. #8
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Checkout success page - 'shipping method' is 'Shipping' rather than 'Free Shippin

    Quote Originally Posted by Hizen View Post
    In addition, there is no payment method name under payment method title for gift certificate purchases. It does display for cc payment and money orders.
    This is to be expected, as there is no actual payment happening.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  9. #9
    Join Date
    Jan 2004
    Posts
    66,364
    Blog Entries
    7
    Plugin Contributions
    274

    Default Re: Checkout success page - 'shipping method' is 'Shipping' rather than 'Free Shippin

    Quote Originally Posted by Hizen View Post
    I found that on the checkout success page, the shipping methods shows 'Shipping' rather than 'Free Shipping' when it is activated for orders over certain amount of value.
    You might try editing the /includes/modules/order_total/ot_shipping.php file, around line 35, by adding a new line, as shown here:
    Code:
            if ( ($pass == true) && ( ($order->info['total'] - $order->info['shipping_cost']) >= MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER) ) {
              $this->title = FREE_SHIPPING_TITLE;
              $order->info['shipping_method'] = $this->title;
              $order->info['total'] -= $order->info['shipping_cost'];
              $order->info['shipping_cost'] = 0;
            }
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  10. #10
    Join Date
    May 2006
    Location
    UK
    Posts
    32
    Plugin Contributions
    0

    Default Re: Checkout success page - 'shipping method' is 'Shipping' rather than 'Free Shippin

    Thank you so much for your time and solution. The code you added does the trick. The shipping method shows properly now.
    To be simple and genuine - we are naturally the same.
    Review My Zen Cart Shop - Clothing & Accessories Wholesale , Silk Store , Studio Flash Lights

 

 

Similar Threads

  1. Free shipping for orders over $100 BUT if weighs more than 25 pounds, charge shipping
    By WWRepair in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 30 Aug 2012, 11:38 PM
  2. joozen - Can I have it not ask for the Shipping Method if it is free shipping?
    By markarupert in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 22 Nov 2011, 10:00 PM
  3. Offering additional shipping for free shipping method?
    By Jay76 in forum Built-in Shipping and Payment Modules
    Replies: 9
    Last Post: 7 Feb 2010, 05:10 PM
  4. Module Shipping. Free shipping for order more than 200€.
    By maci in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 3 Aug 2006, 09:53 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