Showing posts with label How to change the theme for logged user in Magento. Show all posts
Showing posts with label How to change the theme for logged user in Magento. Show all posts

Wednesday, 9 March 2016

How to change the theme for logged user in Magento

If you want to change Magento Theme for which user is login. Then you can use following code:


<?php


if(Mage::getSingleton('customer/session')->isLoggedIn()):

Mage::getDesign()->setPackageName('your_package_name')->setTheme('your_themename');

        endif;

?>