6 replies [Last post]
doomed@drupal.org's picture
Offline
Bug Finder
Joined: 04/05/2008
Juice: 334
Was this information Helpful?

Hey guys,

What do i have to do to make the Shipping cost calculation appear ?

I had it before (on my test site), but for some reason it doesn appear anymore.

I dunno what i disabled.

Calculate shipping is enabled on my Checkout pane, so.. what could be wrong?

doomed@drupal.org's picture
Offline
Bug Finder
Joined: 04/05/2008
Juice: 334
Re: Shipping costs dont appear on checkout ?

Ok, they are appearing now.

But i still have one question:

I can calculate shipping costs. But im not able to select which Shipping method i want.

I would like to have Options:

1) no shipping (client comes and Picks it up)
2) regular shipping (im using Rate quote for this and works fine)
etc.

Anyone care to explain how to achieve this?

doomed@drupal.org's picture
Offline
Bug Finder
Joined: 04/05/2008
Juice: 334
Re: Re: Shipping costs dont appear on checkout ?

Well it is working now.

Apparently, Flat Rate module is compulsory to have any kind of shipping rate, even if its a "No Shipping" thing.

I have it working after following instructions on:

http://www.ubercart.org/docs/user/310/flatrate_shipping_quote

Also, read more on a related problem on http://www.ubercart.org/comment/17705/Naming-rating-quote

svihel's picture
Offline
Joined: 05/29/2008
Juice: 140
Hello,could you please tell

Hello,
could you please tell me what you did to display the "Calculate shipping cost" again? I'm strugling with that like for last two hours or so. Its probably some easy for everyone to spot, but right know I can't help myself I just don't see it...

doomed@drupal.org's picture
Offline
Bug Finder
Joined: 04/05/2008
Juice: 334
svihel wrote:Hello, could
svihel wrote:

Hello,
could you please tell me what you did to display the "Calculate shipping cost" again? I'm strugling with that like for last two hours or so. Its probably some easy for everyone to spot, but right know I can't help myself I just don't see it...

svihel, did you solve this?

svihel's picture
Offline
Joined: 05/29/2008
Juice: 140
Re: svihel wrote:Hello, could

Yes, the problem was that I didn't set my products to be shippable. To fix this you must edit every single product and enable parameter "Product and its derivatives are shippable". For me it wasn't that hard because I import all products anyway.

Possible solution would be to export all products first, use replace script to file and then import again. But I'm not sure about the export part, I currently am struggling with export too, so if you find some good export module in the process that supports product node type, other than Importer module, please let me know..

zeezhao's picture
Offline
Joined: 04/23/2008
Juice: 969
Re: Shipping costs dont appear on checkout ?

unhide by unchecking the "Hide shipping information when possible for carts with no shippable items" box at: admin/store/settings/checkout/edit

Also, you can set to shippable or not directly in the database:

e.g. to set all products to shippable:

update uc_products set shippable = 1;

This is easier than updating via browser...