Tag: magento shipping module
Magento – Multiple Tablerate (end)
by sunny on Nov.20, 2009, under Other
This is the last chapter for adding multiple tablerate to Magento system. Now we need to add to our admin panel, so we can edit it.

We need to add two new files (they are duplicated from the original tablerate module):
\app\code\core\Mage\Adminhtml\Model\System\Config\Backend\Shipping\Tablerate(n).php
\app\code\core\Mage\Adminhtml\Model\System\Config\Source\Shipping\Tablerate(n).php
Magento – Multiple Tablerate (4)
by sunny on Nov.20, 2009, under Other
Leave a Comment :magento, magento shipping module, magento tablerate, multiple tablerate more...Magento – Multiple Tablerate (3)
by sunny on Nov.20, 2009, under Other
Continue for adding your own Multiple Tablerate:

Now modified app\code\core\Mage\Shipping\etc\config.xml
(continue reading…)
Magento – Multiple Tablerate (2)
by sunny on Nov.20, 2009, under Other
Continue for adding your own Multiple Tablerate:

Duplicate from
app\code\core\Mage\Shipping\Model\Mysql4\Carrier\Tablerate.php
app\code\core\Mage\Shipping\Model\Mysql4\Carrier\Tablerate\Collection.php
to
app\code\core\Mage\Shipping\Model\Mysql4\Carrier\Tablerate3.php or (Tablerate(n).php)
app\code\core\Mage\Shipping\Model\Mysql4\Carrier\Tablerate3\Collection.php or (Tablerate(n)\Collection.php)
(continue reading…)
Magento – Multiple Tablerate (1)
by sunny on Nov.20, 2009, under Other
Someone asked me how to do a multiple tablerate, and actually I found it on magento forum. I am gonna list the code that I modified here:
\app\code\core\Mage\Shipping\Model\Carrier\Tablerate.php to \app\code\core\Mage\Shipping\Model\Carrier\Tablerate3.php or Tablerate(n).php
That is screen shot if you just copy my code to your site that will show on your Magento Admin Panel:

Note: This is my modified version, please read comment. In your case, your file should be similar to \app\code\core\Mage\Shipping\Model\Carrier\Tablerate.php, but except you will add a number after tablerate for Tablerate(n).
(continue reading…)