I am trying to add a customised header to my Checkout pages, I have figured out removing the header from the page is basically adding a node in the /layout/checkout.xml file, could anyone explain how to basically a new altered header that only applies to all the Checkout pages.
Current default/layout/checkout.xml
<default>
<remove name="footer"> <!-- removes the footer from checkout -->
... // all other xml data..
</default>
pseudocode for my theme
if (a CHECKOUT PAGE) {
use 'custom checkout header'
else
use the standard default header.
You will have to add something like
in your page template files (1column.phtml, 2columns-left.phtml, etc)
Also try changing
to
if it is still not working.
In your
local.xml
file add the below code to add a custom header to the checkout pageNow create a
new_header.phtml
inapp/design/frontend/default/default/template/page/html
and add the custom header contents in this file. Now update your new header file name in the above template field.You can replace
default/default
withyour_package_name/your_theme_name