Created
April 23, 2014 12:10
-
-
Save thagxt/11212820 to your computer and use it in GitHub Desktop.
Magento How to get the customer login, logout, register and checkout urls
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment