CleanCheckout
CleanCheckout copied to clipboard
Feature request: h1 title for checkout page
Hi,
Can you make an option to set a h1 page title? So customers know they are on the checkout page. See image

Could be a nice addition, no time in the near future to work on this.
You can just use normal theming system to add it yourself using checkout_index_index.xml though.
Allright, can you give me the code to add this?
Use checkout_index_index.xml in your theme, then just add a block to the content container. Same as you would for any other layout customization.
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="content">
<!-- your custom block here -->
</referenceContainer>
</body>
</page>