有什么办法可以为magento的购物车提供自定义URL?例如:当您将产品添加到购物车时,您将获得链接,因为您将转到http://www.domain.com/magento/checkout/cart/
我想将其更改为 http://www.domain.com/magento/checkout/CUSTOM_NAME_GOES_HERE/
我试图编辑
class Mage_Checkout_Helper_Url extends Mage_Core_Helper_Url
public function getCartUrl()
{
return $this->_getUrl('checkout/cart');
}
但它确实有效