I was wondering how it is possible to check if admin user is logged in on the frontend?
Asked
Active
Viewed 134 times
0
I was wondering how it is possible to check if admin user is logged in on the frontend?
Did you try any of these solutions? As far as I can see there were some accepted answers among them. And don't forget to upvote the answer that solved it ;)
– Sander Mangel Sep 04 '13 at 10:59Mage::getSingleton('core/session', array('name' => Mage_Adminhtml_Controller_Action::SESSION_NAMESPACE))->start(); if (Mage::getSingleton('admin/session')->isLoggedIn()) { ...– Dmytro Zavalkin Sep 04 '13 at 20:04