Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3230148
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T16:53:34+00:00 2026-05-17T16:53:34+00:00

Please note, this question is regarding the shipping cost, not price. There is an

  • 0

Please note, this question is regarding the shipping cost, not price. There is an important difference, i.e. what $$ charge the shipping method incurs for the store owner, as opposed to what is $$ charge is paid by the customer.

The shipping_tablerate database table includes a cost field, which is populated in the Mage_Shipping_Model_Carrier_Tablerate object during the collectRates method. However, that field is not accessible anywhere else in the stack, e.g. from a quote’s address.

I need to access that value on the cart page, and I can’t find anyway to achieve it, other than to instantiate a Mage_Shipping_Model_Rate_Request object to pass into collectRates(). That seems unnecessarily inefficient given that the data is already loaded from the table and should be accessible.

I have tried Observing the <shipping_carrier_tablerate_load/> event, but it seems that the _load event is not thrown for that model.

I have also tried accessing the rate from the quote:

$quote = Mage::getSingleton('checkout/cart')->getQuote();
$address = $quote->getShippingAddress();
$rate = $address->getShippingRateByCode($code ='tablerate_bestway');

I can see the calculated price, however cost is not present in that model.

At this stage, I’m running out of ideas. Any suggestions gratefully received!

Thanks,
Jonathan

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T16:53:35+00:00Added an answer on May 17, 2026 at 4:53 pm

    First, try not to worry too much about performance until you see an actual bottleneck somewhere. Have faith in the multitude of caching systems. Put more cynically, Magento’s already a bit of a SQL beast, so if you have a store tuned well a few extra queries won’t hurt.

    Second, the database hit might not even be a problem. The shipping/rate_request Model doesn’t appear to be backed by a database. If you look at the two times it’s used in the core code

    Mage_Shipping_Model_Shipping::collectRatesByAddress
    Mage_Sales_Model_Quote_Address::requestShippingRates
    

    you can see the shipping/rate_request model is being instantiated, and then populated from already loaded fields. Additionally, all the models used in Mage_Shipping_Model_Carrier_Tablerate::collectRates don’t load anything from a database, they just do calculations.

    It’s admirable that you want to build something that’s as performant as possible in the first go around, but there’s too many complex interactions in a modern OO system to magically know the most performant way to do something. Do what you need to to get the information you need, and handle performance tuning (if needed) during a maintenance release (or if you’re not lucky enough to have maintenance release, when someone with power in your organization grumbles about the speed somewhere)

    Third, when the system doesn’t provide access to something yo need, that’s what the class override system is for. Something like

    class Package_Module_Model_Carriertablerate extends
    Mage_Shipping_Model_Carrier_Tablerate
    {
        public function getRate(Mage_Shipping_Model_Rate_Request $request)
        {
            $rate = parent::getRate($request);  
            Mage::register('package_module_carriertablerates', $rate);
            return $rate;
        }
    
    }
    
    ...
    //later, retrieve the rate
    $rates = Mage::registry('package_module_carriertablerates');
    

    You’re basically calling the same code as before, but stowing the results away somewhere for later access. About as safe as an override can get.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please note this link Render HTML as an Image is not helpful. In previously
Note: This might seem like a Super User question at first, but please read
Please note - I am not looking for the right way to open/read a
Please read the whole question. I'm not looking for an approach to managing multi-lingual
Note : Before asking this question I did an exhaustive search, and found little
I have a feeling that this is a subjective question, but perhaps there's something
Please note the Edit below for a lot more information, and a possible solution
Please note: In each step I describe below I'm logged in as the same
How do I print debug messages in the Google Chrome JavaScript Console? Please note
Please consider this example class: [Serializable] public class SomeClass { private DateTime _SomeDateTime; public

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.