RND
(마젠토/Magento) 사용자가 로그인 했는지 확인하는 방법
8월 5, 2017
How to check whether user has logged in or not in magento?
<?php
if(!Mage::getSingleton(‘customer/session’)->isLoggedIn()){
//not logged in
}else{
// logged in
}
?>
How to check whether user has logged in or not in magento?
<?php
if(!Mage::getSingleton(‘customer/session’)->isLoggedIn()){
//not logged in
}else{
// logged in
}
?>