CleanCheckout icon indicating copy to clipboard operation
CleanCheckout copied to clipboard

Feature request: h1 title for checkout page

Open fwegberts opened this issue 7 years ago • 3 comments

Hi,

Can you make an option to set a h1 page title? So customers know they are on the checkout page. See image schermafbeelding-2018-03-16-om-12 03 26

fwegberts avatar Mar 16 '18 11:03 fwegberts

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.

danslo avatar Mar 16 '18 11:03 danslo

Allright, can you give me the code to add this?

fwegberts avatar Mar 16 '18 12:03 fwegberts

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>

danslo avatar Mar 16 '18 13:03 danslo