Disable Recently Ordered / Reorder Block in Magento 2












3















How can i disable Recently order or Reorder block in magento 2?



In css i can hide the block "block block-reorder" by display:none;



But I want to fully disable it.










share|improve this question

























  • magento.stackexchange.com/questions/85743/…

    – Ankit Shah
    Feb 23 '17 at 1:27











  • it's for magento 1., i'm looking for magento 2.

    – Fancyman
    Feb 23 '17 at 1:59













  • It will be same for magento 2 as well

    – Ankit Shah
    Feb 23 '17 at 2:03
















3















How can i disable Recently order or Reorder block in magento 2?



In css i can hide the block "block block-reorder" by display:none;



But I want to fully disable it.










share|improve this question

























  • magento.stackexchange.com/questions/85743/…

    – Ankit Shah
    Feb 23 '17 at 1:27











  • it's for magento 1., i'm looking for magento 2.

    – Fancyman
    Feb 23 '17 at 1:59













  • It will be same for magento 2 as well

    – Ankit Shah
    Feb 23 '17 at 2:03














3












3








3


1






How can i disable Recently order or Reorder block in magento 2?



In css i can hide the block "block block-reorder" by display:none;



But I want to fully disable it.










share|improve this question
















How can i disable Recently order or Reorder block in magento 2?



In css i can hide the block "block block-reorder" by display:none;



But I want to fully disable it.







magento2






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 1 hour ago









Teja Bhagavan Kollepara

2,95841847




2,95841847










asked Feb 23 '17 at 1:04









FancymanFancyman

142314




142314













  • magento.stackexchange.com/questions/85743/…

    – Ankit Shah
    Feb 23 '17 at 1:27











  • it's for magento 1., i'm looking for magento 2.

    – Fancyman
    Feb 23 '17 at 1:59













  • It will be same for magento 2 as well

    – Ankit Shah
    Feb 23 '17 at 2:03



















  • magento.stackexchange.com/questions/85743/…

    – Ankit Shah
    Feb 23 '17 at 1:27











  • it's for magento 1., i'm looking for magento 2.

    – Fancyman
    Feb 23 '17 at 1:59













  • It will be same for magento 2 as well

    – Ankit Shah
    Feb 23 '17 at 2:03

















magento.stackexchange.com/questions/85743/…

– Ankit Shah
Feb 23 '17 at 1:27





magento.stackexchange.com/questions/85743/…

– Ankit Shah
Feb 23 '17 at 1:27













it's for magento 1., i'm looking for magento 2.

– Fancyman
Feb 23 '17 at 1:59







it's for magento 1., i'm looking for magento 2.

– Fancyman
Feb 23 '17 at 1:59















It will be same for magento 2 as well

– Ankit Shah
Feb 23 '17 at 2:03





It will be same for magento 2 as well

– Ankit Shah
Feb 23 '17 at 2:03










3 Answers
3






active

oldest

votes


















11














Create default.xml in your module or theme's view/layout folder and paste the below code.



<?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>
<referenceBlock name="sale.reorder.sidebar" remove="true"/>
</body>
</page>





share|improve this answer































    2














    You can create new deafult.xml in your custom module and write below code to remove recent order block from Left sidebar



    <?xml version="1.0"?>
    <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="../../../../../../../../htdocs/lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
    <body>
    <referenceContainer name="sidebar.additional">
    <referenceBlock name="sale.reorder.sidebar" remove="true"/>
    </referenceContainer>
    </body>
    </page>





    share|improve this answer



















    • 1





      Actually only <referenceBlock name="sale.reorder.sidebar" remove="true"/>is needed.

      – pinicio
      Mar 12 '18 at 17:31



















    2














    Refer below steps to enable or disable customer reorder in Magento 2




    • On the Admin panel, click Stores. In the Settings section, select Configuration.

    • Select Sales under Sales in the panel on the left

    • Open the Reorder section

    • In the Allow Reorder field, select Yes to allow reorders and select No to disable reorders.

    • When complete, click Save.






    share|improve this answer























      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',
      autoActivateHeartbeat: false,
      convertImagesToLinks: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      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%2f161392%2fdisable-recently-ordered-reorder-block-in-magento-2%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      11














      Create default.xml in your module or theme's view/layout folder and paste the below code.



      <?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>
      <referenceBlock name="sale.reorder.sidebar" remove="true"/>
      </body>
      </page>





      share|improve this answer




























        11














        Create default.xml in your module or theme's view/layout folder and paste the below code.



        <?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>
        <referenceBlock name="sale.reorder.sidebar" remove="true"/>
        </body>
        </page>





        share|improve this answer


























          11












          11








          11







          Create default.xml in your module or theme's view/layout folder and paste the below code.



          <?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>
          <referenceBlock name="sale.reorder.sidebar" remove="true"/>
          </body>
          </page>





          share|improve this answer













          Create default.xml in your module or theme's view/layout folder and paste the below code.



          <?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>
          <referenceBlock name="sale.reorder.sidebar" remove="true"/>
          </body>
          </page>






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Aug 30 '17 at 12:42









          Qasim Ali SaeedQasim Ali Saeed

          17016




          17016

























              2














              You can create new deafult.xml in your custom module and write below code to remove recent order block from Left sidebar



              <?xml version="1.0"?>
              <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:noNamespaceSchemaLocation="../../../../../../../../htdocs/lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
              <body>
              <referenceContainer name="sidebar.additional">
              <referenceBlock name="sale.reorder.sidebar" remove="true"/>
              </referenceContainer>
              </body>
              </page>





              share|improve this answer



















              • 1





                Actually only <referenceBlock name="sale.reorder.sidebar" remove="true"/>is needed.

                – pinicio
                Mar 12 '18 at 17:31
















              2














              You can create new deafult.xml in your custom module and write below code to remove recent order block from Left sidebar



              <?xml version="1.0"?>
              <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:noNamespaceSchemaLocation="../../../../../../../../htdocs/lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
              <body>
              <referenceContainer name="sidebar.additional">
              <referenceBlock name="sale.reorder.sidebar" remove="true"/>
              </referenceContainer>
              </body>
              </page>





              share|improve this answer



















              • 1





                Actually only <referenceBlock name="sale.reorder.sidebar" remove="true"/>is needed.

                – pinicio
                Mar 12 '18 at 17:31














              2












              2








              2







              You can create new deafult.xml in your custom module and write below code to remove recent order block from Left sidebar



              <?xml version="1.0"?>
              <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:noNamespaceSchemaLocation="../../../../../../../../htdocs/lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
              <body>
              <referenceContainer name="sidebar.additional">
              <referenceBlock name="sale.reorder.sidebar" remove="true"/>
              </referenceContainer>
              </body>
              </page>





              share|improve this answer













              You can create new deafult.xml in your custom module and write below code to remove recent order block from Left sidebar



              <?xml version="1.0"?>
              <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:noNamespaceSchemaLocation="../../../../../../../../htdocs/lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
              <body>
              <referenceContainer name="sidebar.additional">
              <referenceBlock name="sale.reorder.sidebar" remove="true"/>
              </referenceContainer>
              </body>
              </page>






              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Feb 23 '17 at 2:19









              amanaman

              70835




              70835








              • 1





                Actually only <referenceBlock name="sale.reorder.sidebar" remove="true"/>is needed.

                – pinicio
                Mar 12 '18 at 17:31














              • 1





                Actually only <referenceBlock name="sale.reorder.sidebar" remove="true"/>is needed.

                – pinicio
                Mar 12 '18 at 17:31








              1




              1





              Actually only <referenceBlock name="sale.reorder.sidebar" remove="true"/>is needed.

              – pinicio
              Mar 12 '18 at 17:31





              Actually only <referenceBlock name="sale.reorder.sidebar" remove="true"/>is needed.

              – pinicio
              Mar 12 '18 at 17:31











              2














              Refer below steps to enable or disable customer reorder in Magento 2




              • On the Admin panel, click Stores. In the Settings section, select Configuration.

              • Select Sales under Sales in the panel on the left

              • Open the Reorder section

              • In the Allow Reorder field, select Yes to allow reorders and select No to disable reorders.

              • When complete, click Save.






              share|improve this answer




























                2














                Refer below steps to enable or disable customer reorder in Magento 2




                • On the Admin panel, click Stores. In the Settings section, select Configuration.

                • Select Sales under Sales in the panel on the left

                • Open the Reorder section

                • In the Allow Reorder field, select Yes to allow reorders and select No to disable reorders.

                • When complete, click Save.






                share|improve this answer


























                  2












                  2








                  2







                  Refer below steps to enable or disable customer reorder in Magento 2




                  • On the Admin panel, click Stores. In the Settings section, select Configuration.

                  • Select Sales under Sales in the panel on the left

                  • Open the Reorder section

                  • In the Allow Reorder field, select Yes to allow reorders and select No to disable reorders.

                  • When complete, click Save.






                  share|improve this answer













                  Refer below steps to enable or disable customer reorder in Magento 2




                  • On the Admin panel, click Stores. In the Settings section, select Configuration.

                  • Select Sales under Sales in the panel on the left

                  • Open the Reorder section

                  • In the Allow Reorder field, select Yes to allow reorders and select No to disable reorders.

                  • When complete, click Save.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Dec 19 '18 at 10:43









                  Ashish ViradiyaAshish Viradiya

                  774822




                  774822






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Magento Stack Exchange!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f161392%2fdisable-recently-ordered-reorder-block-in-magento-2%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      What other Star Trek series did the main TNG cast show up in?

                      Berlina muro

                      Berlina aerponto