Magento developer

Leading Developer of Magento Themes and Extensions

Support

How do I add header links back into the Checkout in Ultimento?

When using Ultimento, by default, the header links are removed within the checkout. This is intentionally done as data shows users can be distracted by these links and their presence leads to higher checkout abandonment rates. That said, for some site you may still want to preserve these links. 

Thankfully, doing so is quite simple. You only have to comment out a few lines from two files...

 

Local.xml

--------------------------------------------------------------------------------------------------------------------

 <checkout_onepage_index>
    <reference name="root">
      <block type="page/html_ultcheckoutheader" name="header" as="header" template="page/html/ultcheckoutheader.phtml"/>
      <remove name="footer"/>
      <remove name="root.ult.customernav"/>
    </reference>
  </checkout_onepage_index>

--------------------------------------------------------------------------------------------------------------------


Styles.css

--------------------------------------------------------------------------------------------------------------------

.checkout-onepage-index .header-container

--------------------------------------------------------------------------------------------------------------------