Magento – Multiple Tablerate (end)

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.
multitablerate

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

(more…)

Post to Twitter Post to Plurk Post to Yahoo Buzz Post to Delicious Post to Digg Post to Facebook Post to MySpace Post to Ping.fm Post to Reddit Post to StumbleUpon

Read More

Magento – Multiple Tablerate (2)

Continue for adding your own Multiple Tablerate:
multitablerate
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)
(more…)

Post to Twitter Post to Plurk Post to Yahoo Buzz Post to Delicious Post to Digg Post to Facebook Post to MySpace Post to Ping.fm Post to Reddit Post to StumbleUpon

Read More

Magento – Multiple Tablerate (1)

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:
multitablerate

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).
(more…)

Post to Twitter Post to Plurk Post to Yahoo Buzz Post to Delicious Post to Digg Post to Facebook Post to MySpace Post to Ping.fm Post to Reddit Post to StumbleUpon

Read More