简体   繁体   中英

I am getting the error in my magento site

Fatal error:Call to member function getproduct() on a non-object  in app/...../checkout/cart/sidebar/default.phtml on line 29

Why this happen?

Any solution to remove this error??

To remove error,

Go to app/design/frontend/your_theme/checkout/cart/sidebar/default.phtml

Search for getproduct

Comment its line and check.

It happens because, You called the function on an object not associated to it.

Have you used

$_product = Mage::getModel('catalog/product')->load($product_id)

before using it?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM