|
app/code/core/Mage/Checkout/Helper/Url.php:
public function getCheckoutUrl() { return $this->_getUrl('checkout/onepage'); }
public function getOPCheckoutUrl() { return $this->_getUrl('checkout/onepage'); }
Couldn’t figure out why I couldn’t remove “Checkout” from top.links using this:
<action method="removeLinkByUrl"> <url helper="checkout/url/getCheckoutUrl" /> </action>
Realized it was because getCheckoutUrl() was returning the wrong address.
|