Magento2: breadcrumbs are not shown in checkout page

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;







up vote
2
down vote

favorite












After adding this code in checkout_index_index.xml breadcrumbs are not shown.



<referenceBlock name="breadcrumbs">
<action method="addCrumb">
<argument name="crumbName" xsi:type="string">Home</argument>
<argument name="crumbInfo" xsi:type="array">
<item name="title" xsi:type="string">Home</item>
<item name="label" xsi:type="string">Home</item>
<item name="link" xsi:type="string">/</item>
</argument>
</action>
<action method="addCrumb">
<argument name="crumbName" xsi:type="string">Checkout</argument>
<argument name="crumbInfo" xsi:type="array">
<item name="title" xsi:type="string">Checkout</item>
<item name="label" xsi:type="string">Checkout</item>
</argument>
</action>
</referenceBlock>









share|improve this question





























    up vote
    2
    down vote

    favorite












    After adding this code in checkout_index_index.xml breadcrumbs are not shown.



    <referenceBlock name="breadcrumbs">
    <action method="addCrumb">
    <argument name="crumbName" xsi:type="string">Home</argument>
    <argument name="crumbInfo" xsi:type="array">
    <item name="title" xsi:type="string">Home</item>
    <item name="label" xsi:type="string">Home</item>
    <item name="link" xsi:type="string">/</item>
    </argument>
    </action>
    <action method="addCrumb">
    <argument name="crumbName" xsi:type="string">Checkout</argument>
    <argument name="crumbInfo" xsi:type="array">
    <item name="title" xsi:type="string">Checkout</item>
    <item name="label" xsi:type="string">Checkout</item>
    </argument>
    </action>
    </referenceBlock>









    share|improve this question

























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      After adding this code in checkout_index_index.xml breadcrumbs are not shown.



      <referenceBlock name="breadcrumbs">
      <action method="addCrumb">
      <argument name="crumbName" xsi:type="string">Home</argument>
      <argument name="crumbInfo" xsi:type="array">
      <item name="title" xsi:type="string">Home</item>
      <item name="label" xsi:type="string">Home</item>
      <item name="link" xsi:type="string">/</item>
      </argument>
      </action>
      <action method="addCrumb">
      <argument name="crumbName" xsi:type="string">Checkout</argument>
      <argument name="crumbInfo" xsi:type="array">
      <item name="title" xsi:type="string">Checkout</item>
      <item name="label" xsi:type="string">Checkout</item>
      </argument>
      </action>
      </referenceBlock>









      share|improve this question















      After adding this code in checkout_index_index.xml breadcrumbs are not shown.



      <referenceBlock name="breadcrumbs">
      <action method="addCrumb">
      <argument name="crumbName" xsi:type="string">Home</argument>
      <argument name="crumbInfo" xsi:type="array">
      <item name="title" xsi:type="string">Home</item>
      <item name="label" xsi:type="string">Home</item>
      <item name="link" xsi:type="string">/</item>
      </argument>
      </action>
      <action method="addCrumb">
      <argument name="crumbName" xsi:type="string">Checkout</argument>
      <argument name="crumbInfo" xsi:type="array">
      <item name="title" xsi:type="string">Checkout</item>
      <item name="label" xsi:type="string">Checkout</item>
      </argument>
      </action>
      </referenceBlock>






      magento2 checkout-page






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 6 mins ago









      A J

      103114




      103114










      asked 1 hour ago









      Tirth Patel

      857




      857




















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          1
          down vote













          make sure checkout_index_index.xml is in right place app/design/frontend/Vendor/default/Magento_Checkout/layout/checkout_index_index.xml



          in your checkout_index_index.xml file paste below code



          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Checkout</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Checkout</item>
          <item name="label" xsi:type="string">Checkout</item>
          </argument>
          </action>
          </referenceBlock>


          run this command after adding code php bin/magento cache:clean && php bin/magento cache:flush



          if you want also display breadcrubs into checkout shoping cart page follow this link






          share|improve this answer








          New contributor




          Hit's is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.

















          • yes its placed right place still issue
            – Tirth Patel
            57 mins ago










          • make sure your custom app/code directory contains checkout_index_index.xml file? just search around there if yes then add above code there.
            – Hit's
            54 mins ago

















          up vote
          1
          down vote













          Compare your code with given below code.



          IF in theme already have a checkout_index_index.xml file then add below code.



          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Shopping Cart</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Shopping Cart</item>
          <item name="label" xsi:type="string">Shopping Cart</item>
          <item name="link" xsi:type="string">/checkout/cart</item>
          </argument>
          </action>
          </referenceBlock>


          In case there is no checkout_index_index.xml file in the layout folder, you have to create new one with such content (note the file format, it should be .xml):



           <?xml version="1.0"?>
          <!--
          /**
          * Copyright © 2015 Magento. All rights reserved.
          * See COPYING.txt for license details.
          */
          -->
          <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
          <body>
          <move element="logo" destination="header-wrapper.grid-container"/>
          <referenceBlock name="page.preloader" remove="true" />
          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Shopping Cart</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Shopping Cart</item>
          <item name="label" xsi:type="string">Shopping Cart</item>
          <item name="link" xsi:type="string">/checkout/cart</item>
          </argument>
          </action>
          </referenceBlock>
          </body>
          </page>



          Run php bin/magento c:c



          Run php bin/magento c:f







          share|improve this answer




















          • yes checked and not shows
            – Tirth Patel
            54 mins ago










          • Find in your whole magento directory is there add code like <referenceBlock name="breadcrumbs" remove="true">
            – Chirag Patel
            53 mins ago











          • no there is not like this code in any file
            – Tirth Patel
            39 mins ago











          • It might be possible this block is override in another file. otherwise it is working form me.
            – Chirag Patel
            34 mins ago










          • yes there is custom module where checkout_index_index file override but that module was disabled is that creating issue?
            – Tirth Patel
            28 mins ago











          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "479"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f245159%2fmagento2-breadcrumbs-are-not-shown-in-checkout-page%23new-answer', 'question_page');

          );

          Post as a guest






























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote













          make sure checkout_index_index.xml is in right place app/design/frontend/Vendor/default/Magento_Checkout/layout/checkout_index_index.xml



          in your checkout_index_index.xml file paste below code



          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Checkout</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Checkout</item>
          <item name="label" xsi:type="string">Checkout</item>
          </argument>
          </action>
          </referenceBlock>


          run this command after adding code php bin/magento cache:clean && php bin/magento cache:flush



          if you want also display breadcrubs into checkout shoping cart page follow this link






          share|improve this answer








          New contributor




          Hit's is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.

















          • yes its placed right place still issue
            – Tirth Patel
            57 mins ago










          • make sure your custom app/code directory contains checkout_index_index.xml file? just search around there if yes then add above code there.
            – Hit's
            54 mins ago














          up vote
          1
          down vote













          make sure checkout_index_index.xml is in right place app/design/frontend/Vendor/default/Magento_Checkout/layout/checkout_index_index.xml



          in your checkout_index_index.xml file paste below code



          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Checkout</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Checkout</item>
          <item name="label" xsi:type="string">Checkout</item>
          </argument>
          </action>
          </referenceBlock>


          run this command after adding code php bin/magento cache:clean && php bin/magento cache:flush



          if you want also display breadcrubs into checkout shoping cart page follow this link






          share|improve this answer








          New contributor




          Hit's is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.

















          • yes its placed right place still issue
            – Tirth Patel
            57 mins ago










          • make sure your custom app/code directory contains checkout_index_index.xml file? just search around there if yes then add above code there.
            – Hit's
            54 mins ago












          up vote
          1
          down vote










          up vote
          1
          down vote









          make sure checkout_index_index.xml is in right place app/design/frontend/Vendor/default/Magento_Checkout/layout/checkout_index_index.xml



          in your checkout_index_index.xml file paste below code



          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Checkout</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Checkout</item>
          <item name="label" xsi:type="string">Checkout</item>
          </argument>
          </action>
          </referenceBlock>


          run this command after adding code php bin/magento cache:clean && php bin/magento cache:flush



          if you want also display breadcrubs into checkout shoping cart page follow this link






          share|improve this answer








          New contributor




          Hit's is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          make sure checkout_index_index.xml is in right place app/design/frontend/Vendor/default/Magento_Checkout/layout/checkout_index_index.xml



          in your checkout_index_index.xml file paste below code



          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Checkout</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Checkout</item>
          <item name="label" xsi:type="string">Checkout</item>
          </argument>
          </action>
          </referenceBlock>


          run this command after adding code php bin/magento cache:clean && php bin/magento cache:flush



          if you want also display breadcrubs into checkout shoping cart page follow this link







          share|improve this answer








          New contributor




          Hit's is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          share|improve this answer



          share|improve this answer






          New contributor




          Hit's is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered 1 hour ago









          Hit's

          1436




          1436




          New contributor




          Hit's is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          Hit's is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          Hit's is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.











          • yes its placed right place still issue
            – Tirth Patel
            57 mins ago










          • make sure your custom app/code directory contains checkout_index_index.xml file? just search around there if yes then add above code there.
            – Hit's
            54 mins ago
















          • yes its placed right place still issue
            – Tirth Patel
            57 mins ago










          • make sure your custom app/code directory contains checkout_index_index.xml file? just search around there if yes then add above code there.
            – Hit's
            54 mins ago















          yes its placed right place still issue
          – Tirth Patel
          57 mins ago




          yes its placed right place still issue
          – Tirth Patel
          57 mins ago












          make sure your custom app/code directory contains checkout_index_index.xml file? just search around there if yes then add above code there.
          – Hit's
          54 mins ago




          make sure your custom app/code directory contains checkout_index_index.xml file? just search around there if yes then add above code there.
          – Hit's
          54 mins ago












          up vote
          1
          down vote













          Compare your code with given below code.



          IF in theme already have a checkout_index_index.xml file then add below code.



          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Shopping Cart</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Shopping Cart</item>
          <item name="label" xsi:type="string">Shopping Cart</item>
          <item name="link" xsi:type="string">/checkout/cart</item>
          </argument>
          </action>
          </referenceBlock>


          In case there is no checkout_index_index.xml file in the layout folder, you have to create new one with such content (note the file format, it should be .xml):



           <?xml version="1.0"?>
          <!--
          /**
          * Copyright © 2015 Magento. All rights reserved.
          * See COPYING.txt for license details.
          */
          -->
          <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
          <body>
          <move element="logo" destination="header-wrapper.grid-container"/>
          <referenceBlock name="page.preloader" remove="true" />
          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Shopping Cart</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Shopping Cart</item>
          <item name="label" xsi:type="string">Shopping Cart</item>
          <item name="link" xsi:type="string">/checkout/cart</item>
          </argument>
          </action>
          </referenceBlock>
          </body>
          </page>



          Run php bin/magento c:c



          Run php bin/magento c:f







          share|improve this answer




















          • yes checked and not shows
            – Tirth Patel
            54 mins ago










          • Find in your whole magento directory is there add code like <referenceBlock name="breadcrumbs" remove="true">
            – Chirag Patel
            53 mins ago











          • no there is not like this code in any file
            – Tirth Patel
            39 mins ago











          • It might be possible this block is override in another file. otherwise it is working form me.
            – Chirag Patel
            34 mins ago










          • yes there is custom module where checkout_index_index file override but that module was disabled is that creating issue?
            – Tirth Patel
            28 mins ago















          up vote
          1
          down vote













          Compare your code with given below code.



          IF in theme already have a checkout_index_index.xml file then add below code.



          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Shopping Cart</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Shopping Cart</item>
          <item name="label" xsi:type="string">Shopping Cart</item>
          <item name="link" xsi:type="string">/checkout/cart</item>
          </argument>
          </action>
          </referenceBlock>


          In case there is no checkout_index_index.xml file in the layout folder, you have to create new one with such content (note the file format, it should be .xml):



           <?xml version="1.0"?>
          <!--
          /**
          * Copyright © 2015 Magento. All rights reserved.
          * See COPYING.txt for license details.
          */
          -->
          <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
          <body>
          <move element="logo" destination="header-wrapper.grid-container"/>
          <referenceBlock name="page.preloader" remove="true" />
          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Shopping Cart</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Shopping Cart</item>
          <item name="label" xsi:type="string">Shopping Cart</item>
          <item name="link" xsi:type="string">/checkout/cart</item>
          </argument>
          </action>
          </referenceBlock>
          </body>
          </page>



          Run php bin/magento c:c



          Run php bin/magento c:f







          share|improve this answer




















          • yes checked and not shows
            – Tirth Patel
            54 mins ago










          • Find in your whole magento directory is there add code like <referenceBlock name="breadcrumbs" remove="true">
            – Chirag Patel
            53 mins ago











          • no there is not like this code in any file
            – Tirth Patel
            39 mins ago











          • It might be possible this block is override in another file. otherwise it is working form me.
            – Chirag Patel
            34 mins ago










          • yes there is custom module where checkout_index_index file override but that module was disabled is that creating issue?
            – Tirth Patel
            28 mins ago













          up vote
          1
          down vote










          up vote
          1
          down vote









          Compare your code with given below code.



          IF in theme already have a checkout_index_index.xml file then add below code.



          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Shopping Cart</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Shopping Cart</item>
          <item name="label" xsi:type="string">Shopping Cart</item>
          <item name="link" xsi:type="string">/checkout/cart</item>
          </argument>
          </action>
          </referenceBlock>


          In case there is no checkout_index_index.xml file in the layout folder, you have to create new one with such content (note the file format, it should be .xml):



           <?xml version="1.0"?>
          <!--
          /**
          * Copyright © 2015 Magento. All rights reserved.
          * See COPYING.txt for license details.
          */
          -->
          <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
          <body>
          <move element="logo" destination="header-wrapper.grid-container"/>
          <referenceBlock name="page.preloader" remove="true" />
          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Shopping Cart</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Shopping Cart</item>
          <item name="label" xsi:type="string">Shopping Cart</item>
          <item name="link" xsi:type="string">/checkout/cart</item>
          </argument>
          </action>
          </referenceBlock>
          </body>
          </page>



          Run php bin/magento c:c



          Run php bin/magento c:f







          share|improve this answer












          Compare your code with given below code.



          IF in theme already have a checkout_index_index.xml file then add below code.



          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Shopping Cart</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Shopping Cart</item>
          <item name="label" xsi:type="string">Shopping Cart</item>
          <item name="link" xsi:type="string">/checkout/cart</item>
          </argument>
          </action>
          </referenceBlock>


          In case there is no checkout_index_index.xml file in the layout folder, you have to create new one with such content (note the file format, it should be .xml):



           <?xml version="1.0"?>
          <!--
          /**
          * Copyright © 2015 Magento. All rights reserved.
          * See COPYING.txt for license details.
          */
          -->
          <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
          <body>
          <move element="logo" destination="header-wrapper.grid-container"/>
          <referenceBlock name="page.preloader" remove="true" />
          <referenceBlock name="breadcrumbs">
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Home</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Home</item>
          <item name="label" xsi:type="string">Home</item>
          <item name="link" xsi:type="string">/</item>
          </argument>
          </action>
          <action method="addCrumb">
          <argument name="crumbName" xsi:type="string">Shopping Cart</argument>
          <argument name="crumbInfo" xsi:type="array">
          <item name="title" xsi:type="string">Shopping Cart</item>
          <item name="label" xsi:type="string">Shopping Cart</item>
          <item name="link" xsi:type="string">/checkout/cart</item>
          </argument>
          </action>
          </referenceBlock>
          </body>
          </page>



          Run php bin/magento c:c



          Run php bin/magento c:f








          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 1 hour ago









          Chirag Patel

          1,619119




          1,619119











          • yes checked and not shows
            – Tirth Patel
            54 mins ago










          • Find in your whole magento directory is there add code like <referenceBlock name="breadcrumbs" remove="true">
            – Chirag Patel
            53 mins ago











          • no there is not like this code in any file
            – Tirth Patel
            39 mins ago











          • It might be possible this block is override in another file. otherwise it is working form me.
            – Chirag Patel
            34 mins ago










          • yes there is custom module where checkout_index_index file override but that module was disabled is that creating issue?
            – Tirth Patel
            28 mins ago

















          • yes checked and not shows
            – Tirth Patel
            54 mins ago










          • Find in your whole magento directory is there add code like <referenceBlock name="breadcrumbs" remove="true">
            – Chirag Patel
            53 mins ago











          • no there is not like this code in any file
            – Tirth Patel
            39 mins ago











          • It might be possible this block is override in another file. otherwise it is working form me.
            – Chirag Patel
            34 mins ago










          • yes there is custom module where checkout_index_index file override but that module was disabled is that creating issue?
            – Tirth Patel
            28 mins ago
















          yes checked and not shows
          – Tirth Patel
          54 mins ago




          yes checked and not shows
          – Tirth Patel
          54 mins ago












          Find in your whole magento directory is there add code like <referenceBlock name="breadcrumbs" remove="true">
          – Chirag Patel
          53 mins ago





          Find in your whole magento directory is there add code like <referenceBlock name="breadcrumbs" remove="true">
          – Chirag Patel
          53 mins ago













          no there is not like this code in any file
          – Tirth Patel
          39 mins ago





          no there is not like this code in any file
          – Tirth Patel
          39 mins ago













          It might be possible this block is override in another file. otherwise it is working form me.
          – Chirag Patel
          34 mins ago




          It might be possible this block is override in another file. otherwise it is working form me.
          – Chirag Patel
          34 mins ago












          yes there is custom module where checkout_index_index file override but that module was disabled is that creating issue?
          – Tirth Patel
          28 mins ago





          yes there is custom module where checkout_index_index file override but that module was disabled is that creating issue?
          – Tirth Patel
          28 mins ago


















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f245159%2fmagento2-breadcrumbs-are-not-shown-in-checkout-page%23new-answer', 'question_page');

          );

          Post as a guest













































































          Comments

          Popular posts from this blog

          Long meetings (6-7 hours a day): Being “babysat” by supervisor

          Is the Concept of Multiple Fantasy Races Scientifically Flawed? [closed]

          Confectionery