Magento – Got error: CRITICAL: Broken reference: No element found with ID ‘checkout.header.wrapper’

checkouterrormagento2payment

I got this error in system.log:

main.CRITICAL: Broken reference: No element found with ID
'checkout.header.wrapper'

and the checkout page is blank.

Best Answer

I solved this warning message in Magento 2.1.1:

Open your file (override file not in vendor) checkout_index_index.xml.

In line equals:

<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">

add layout="1column" property:

<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">

I found this solution here.