Is there any way i can have a custom URL for the shopping cart of magento ? ex: when you add a product to the cart, you get the link as you will go to http://www.domain.com/magento/checkout/cart/
I want to change this to http://www.domain.com/magento/checkout/CUSTOM_NAME_GOES_HERE/
i tried to edit
class Mage_Checkout_Helper_Url extends Mage_Core_Helper_Url
public function getCartUrl()
{
return $this->_getUrl('checkout/cart');
}
but it dosent works