cancel
Showing results for 
Search instead for 
Did you mean: 

Shipping Method in Magento 1.9

   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

Shipping Method in Magento 1.9

Hi,

 

I need to add Shipping Method option for Downloadable Products. I know for default Downloadable Products don't have that option. But I need to enable shipping method option.

 

How to do that?

If need to change code means where to do that?

Please suggest fixing that issue.

 

Thanks 

2 REPLIES 2

Re: Shipping Method in Magento 1.9

Hello @jeganee,

 

Please follow below steps to activate shipping to work with only downloadable products, it is in:

  • Shipping Information - app/code/core/Mage/Checkout/Block/Onepage/Shipping.php > public function isShow() > change it to returns true.
  • Shipping Method (Step 3) - app/code/core/Mage/Checkout/Block/Onepage/Shipping/Method.php > public function isShow() > again change it to returns true.

If you have any trouble then let us know.
--
If issue is solved, Click "Kudos" & "Accept as Solution"


Re: Shipping Method in Magento 1.9

Hi,

 

Both files have the following codes:

public function isShow()
{
return !$this->getQuote()->isVirtual();
}

 

is change to like this below?

 

public function isShow()
{
return true;
}

 

The above code is right? IF not how to do that?

 

Please check the attached documents.checkout-without-shipping.png checkout-with-shipping.png