Tel: +1 310-997-0924 (Los Angeles), +82 070-8064-2559 (서울)
Login url <?php echo Mage::getUrl(‘customer/account/login’); ?> Logout url <?php echo Mage::getUrl(‘customer/account/logout’); ?> My Account url <?php echo Mage::getUrl(‘customer/account’); ?> Register url <?php echo Mage::getUrl(‘customer/account/create’); ?> Checkout url <?php echo Mage::getUrl(‘checkout/cart’); ?>
Continue Reading →
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 } ?>
Continue Reading →
1. ssh 접속 후 2. cd 마젠토 설치된 폴더 이름 cd public_html – 마젠토2가 root 에 설치된 경우 cd ‘특정 폴더 이름’ – 마젠토2가 특정 하위 카테고리에 설치된 경우에는 추가로 한번 더 들어간다. 3. 아래의 명령어들 중에서 필요한 것 사용. php bin/magento indexer:info – 기본 php bin/magento indexer:status – 현재 상태 보기 php bin/magento indexer:reindex […]
Continue Reading →
관리자 페이지 회원 목록에서 한번에 보이는 회원의 목록을 100으로 늘리고 싶을 때에는 아래와 같이 한다. modules/member/member.admin.model.php 의 function getMemberList() { 함수 안에 있는 아래의 소스를 수정 $args->list_count = 40; =>$args->list_count = 100;
Continue Reading →