No shipping method shown on orders

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
Brewhaus
Vice Admiral (VADM)
Vice Admiral (VADM)
Posts: 878
Joined: Sat Jan 19, 2008 4:30 pm

No shipping method shown on orders

Post by Brewhaus » Wed Dec 31, 2008 8:36 am

In the past couple of weeks we have had two orders come through with no shipping method selected. I checked the error logs, and there are no errors showing near the time that the latest order was placed, so it was not a matter of no shipping rates being pulled.

Has anyone else hit this? What could be the cause of the problem (what could be happening to allow customers to complete an order with no shipping method selected), and how can we stop this from happening in the future? All of our products have shipping methods associated with them, so it is not a matter of having non-shippable items in the order.
Rick Morris
Brewhaus (America) Inc.
Hot Sauce Depot

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: No shipping method shown on orders

Post by mazhar » Wed Dec 31, 2008 9:09 am

Have you any customization in your store?
What is the payment method for those two orders and also other order details?

Brewhaus
Vice Admiral (VADM)
Vice Admiral (VADM)
Posts: 878
Joined: Sat Jan 19, 2008 4:30 pm

Re: No shipping method shown on orders

Post by Brewhaus » Wed Dec 31, 2008 9:44 am

We have customized the general layout (style.css) and the invoices, but that is about all. Both orders were paid by credit card, and contain several items that all use the standard warehouse for shipping.

We tried to replicate the problem, but when we enter the same order online, shipping to the same address, we still get shipping methods with one selected by default. Somehow, there was no shipping method selected on the customers' order.
Rick Morris
Brewhaus (America) Inc.
Hot Sauce Depot

Brewhaus
Vice Admiral (VADM)
Vice Admiral (VADM)
Posts: 878
Joined: Sat Jan 19, 2008 4:30 pm

Re: No shipping method shown on orders

Post by Brewhaus » Wed Dec 31, 2008 1:21 pm

Update- we spoke to the customer and he told us that when he placed the order he had selected FedEx Ground, and even knew the cost. So, somehow the system deleted his shipping method and only authorized his credit card for the product sub-total.
Rick Morris
Brewhaus (America) Inc.
Hot Sauce Depot

User avatar
AbleMods
Master Yoda
Master Yoda
Posts: 5170
Joined: Wed Sep 26, 2007 5:47 am
Location: Fort Myers, Florida USA

Re: No shipping method shown on orders

Post by AbleMods » Fri Jan 02, 2009 2:02 pm

Brewhaus wrote:Update- we spoke to the customer and he told us that when he placed the order he had selected FedEx Ground, and even knew the cost. So, somehow the system deleted his shipping method and only authorized his credit card for the product sub-total.
Google Checkout has done that to me on occasion.

A few times it even pushed the order to AC7 with the shipping charge duplicated. Yet in GC it will show once.

The customer usually catches it because the order total in AC7 won't match what Google Checkout told them.

These things only happen with GC. Orders and Payments with Authorize.Net have been flawless.
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com

Brewhaus
Vice Admiral (VADM)
Vice Admiral (VADM)
Posts: 878
Joined: Sat Jan 19, 2008 4:30 pm

Re: No shipping method shown on orders

Post by Brewhaus » Fri Jan 02, 2009 5:06 pm

We do not use Google Checkout, so here is a first with Authorize.net for you. The only two options that we have are Paypal and credit card via Authorize.net.
Rick Morris
Brewhaus (America) Inc.
Hot Sauce Depot

User avatar
calvis
Rear Admiral (RADM)
Rear Admiral (RADM)
Posts: 710
Joined: Tue Jan 27, 2004 3:57 pm
Location: Redmond, WA

Re: No shipping method shown on orders

Post by calvis » Sun Mar 02, 2014 8:48 am

I know this is an old thread.

We get this frequently as well with our 7.0.7 version.

We use UPS to pull up shipping rates. We also use authorize.net to process payments. I've try to duplicate but never been able to. Customer has no clue how they do it as well. All they know is they get an email confirmation with no shipping. Payment doesn't include shipping as well. This happens most frequently when customer ships to an address that is different than the billing address.

We have lots of customizations, but seeing other people with the same problem makes me wonder that it might not be our customizations. There might be anther factor involved.

Any clue how to prevent this would be nice.
Able Customer Since 1999 Currently Running on GOLD R12 SR1 and PCI Certified.

User avatar
jmestep
AbleCommerce Angel
Posts: 8164
Joined: Sun Feb 29, 2004 8:04 pm
Location: Dayton, OH
Contact:

Re: No shipping method shown on orders

Post by jmestep » Mon Mar 03, 2014 6:09 am

We have several sites that had reported that issue. I finally hid the payment form if the order was supposed to have shipping and it didn't. We haven't had any more complaints from the sites where I did this. I could never duplicate the problem myself.
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx

User avatar
jmestep
AbleCommerce Angel
Posts: 8164
Joined: Sun Feb 29, 2004 8:04 pm
Location: Dayton, OH
Contact:

Re: No shipping method shown on orders

Post by jmestep » Fri Mar 07, 2014 5:36 am

Someone asked me what code I used. Here is from one site - I put it in after Able's
if (!(editBilling || editShipping))
{
trPayment.Visible = true;

Code: Select all

  //DISPLAY PAYMENT METHODS
            if (!(editBilling || editShipping))
            {
                trPayment.Visible = true;
				//w2m jme 050812 don't show payment methods if there is no shipment
				
                if (needsShipping)
                {
				if (basket.Shipments.Count == 0)
                    {
                        trPayment.Visible = false;
						CheckoutMessage.Visible = true;
                    }
                    //calculate shipping
                    UpdateShippingAddress(basket, GetShippingAddress());
                    ShipmentList.DataSource = basket.Shipments;
                    ShipmentList.DataBind();
                }
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx

Post Reply