Skip to content

Instantly share code, notes, and snippets.

@veritstudio
Created August 20, 2019 06:22
Show Gist options
  • Save veritstudio/88e162b15619d4aa9b91e932395924b5 to your computer and use it in GitHub Desktop.
Save veritstudio/88e162b15619d4aa9b91e932395924b5 to your computer and use it in GitHub Desktop.
Remove progress bar from checkout - Magento 2
<?xml version="1.0"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="checkout" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceBlock name="checkout.root">
<arguments>
<argument name="jsLayout" xsi:type="array">
<item name="components" xsi:type="array">
<item name="checkout" xsi:type="array">
<item name="children" xsi:type="array">
<item name="progressBar" xsi:type="array">
<item name="config" xsi:type="array">
<item name="componentDisabled" xsi:type="boolean">true</item>
</item>
</item>
</item>
</item>
</item>
</argument>
</arguments>
</referenceBlock>
</body>
</page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment