Magento – Shipping rates not working after installing OneStep CheckOut extension

extensionsshipping

I have WebShop Matrix Rates extension in my store through which I have defined city-to-city and weight wise rates.They work perfectly fine without this new OneStep Checkout extension however when I enable this extension the rates do not get displayed in one step checkout page and the product is billed without shipping rate. Any help?
The one step checkout extension is Lotus Breath-One Step Checkout

Best Answer

I am using version 3.1.2 of LotusBreath One Step Checkout and I had the same problem. U only have to uncomment one line of code

On file /app/code/local/Lotusbreath/OneStepCheckout/Block/Onepage/Shipping/Method/Available.php

Uncomment line 55

$this->getAddress()->save()->setCollectShippingRates(true);

Refresh cache and you are done ;D

Related Topic