메뉴 건너뛰기
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
}
?>