Is there any setting in magento backend to change continue shopping url ? If there any settings is there let me know How I can change. I am using Magento 1.7.x
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
Sadly not, I’ve always wondered why this hasn’t been in the configuration. You have two choices, you can either extend
Mage_Checkout_Block_Cartto apply logic to determine what URL to use or you can set the the URL in the template.However, if you’re going to set it in the template, you might as well just remove change
<?php echo $this->__('Click <a href="%s">here</a> to continue shopping.', $this->getContinueShoppingUrl()) ?>to<?php echo $this->__('Click <a href="http://URL.COM">here</a> to continue shopping.') ?>