I have set the custom Magento core session variable in Shopping cart page.
Mage::getSingleton('core/session')->setMyPoints('4');
I need to retrieve the above Session value in checkout page.But It show the empty value while retrieve the session variable in checkout page using below code.
echo Mage::getSingleton('core/session')->getMyPoints();
Can any one help this.
Any help much appriciation.
System > Configuration > Web > Session Cookie Management > Cookie Lifetimeto make sure that this value is not set to something very low. Also - just a best practice thing, I would store your variable incheckout/sessioninstead ofcore/session. – Yrcrz Jan 19 at 13:07