Username or Email
Password:
Forgot Password
Hi,
i am wondering is it possible to change mage template design while passing as url string?
ex. http://www.store.com/checkout/cart/add?product=1&newDesign=newDesign
interesting you should be able to reset theme by
Mage::getDesign()->setTheme('xxx');
Mage::getDesign()->setTheme('template', 'xxx');
btw reset theme before controller dispatch
so I need edit Checkout/controllers/CartController.php
and add this line Mage::getDesign()->setTheme(’XXX’, ‘website’)
before
$this->_redirect(’checkout/cart’);