How to remove add to compare in catalog search result page?Magento 2: Safe and easiest way to disable Compare products & Wishlist ModuleHow to exclude specific category id in catalog search result?remove category filter on catalog searchremove catalog search box which is present left to normal search boxHow can I add meta noindex to all catalog search result pages in Magento2?One page search result using ajaxHow to can i change page column layout for search result page when result not available?How to edit / remove tabs in search result page Magento 2Set default direction (ordenation) in Catalog Search ResultMagento 2.2.6 : Add custom phtml file after product price in catalog search result pageCatalog search result problem

Rock identification in KY

Are the number of citations and number of published articles the most important criteria for a tenure promotion?

Codimension of non-flat locus

Modeling an IP Address

Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?

Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?

Why is 150k or 200k jobs considered good when there's 300k+ births a month?

Why can't I see bouncing of switch on oscilloscope screen?

Horror movie about a virus at the prom; beginning and end are stylized as a cartoon

I'm flying to France today and my passport expires in less than 2 months

Replacing matching entries in one column of a file by another column from a different file

Maximum likelihood parameters deviate from posterior distributions

Which country benefited the most from UN Security Council vetoes?

How does one intimidate enemies without having the capacity for violence?

Can a Cauchy sequence converge for one metric while not converging for another?

Can you really stack all of this on an Opportunity Attack?

A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?

Languages that we cannot (dis)prove to be Context-Free

Theorems that impeded progress

Client team has low performances and low technical skills: we always fix their work and now they stop collaborate with us. How to solve?

How much RAM could one put in a typical 80386 setup?

What does the "remote control" for a QF-4 look like?

How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?

What defenses are there against being summoned by the Gate spell?



How to remove add to compare in catalog search result page?


Magento 2: Safe and easiest way to disable Compare products & Wishlist ModuleHow to exclude specific category id in catalog search result?remove category filter on catalog searchremove catalog search box which is present left to normal search boxHow can I add meta noindex to all catalog search result pages in Magento2?One page search result using ajaxHow to can i change page column layout for search result page when result not available?How to edit / remove tabs in search result page Magento 2Set default direction (ordenation) in Catalog Search ResultMagento 2.2.6 : Add custom phtml file after product price in catalog search result pageCatalog search result problem






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








0















Actually I want to remove add to compare in catalog search result page










share|improve this question
















bumped to the homepage by Community 7 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • Hello, @hitesh if any of answer solves your concern then mark as accepted which will help future readers, thanks.

    – Aaditya
    Oct 16 '18 at 12:25

















0















Actually I want to remove add to compare in catalog search result page










share|improve this question
















bumped to the homepage by Community 7 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • Hello, @hitesh if any of answer solves your concern then mark as accepted which will help future readers, thanks.

    – Aaditya
    Oct 16 '18 at 12:25













0












0








0








Actually I want to remove add to compare in catalog search result page










share|improve this question
















Actually I want to remove add to compare in catalog search result page







magento2 catalogsearch






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 11 '18 at 4:40









Charul Tyagi

715113




715113










asked Oct 11 '18 at 4:29









hitesh balpandehitesh balpande

3909




3909





bumped to the homepage by Community 7 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 7 hours ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.














  • Hello, @hitesh if any of answer solves your concern then mark as accepted which will help future readers, thanks.

    – Aaditya
    Oct 16 '18 at 12:25

















  • Hello, @hitesh if any of answer solves your concern then mark as accepted which will help future readers, thanks.

    – Aaditya
    Oct 16 '18 at 12:25
















Hello, @hitesh if any of answer solves your concern then mark as accepted which will help future readers, thanks.

– Aaditya
Oct 16 '18 at 12:25





Hello, @hitesh if any of answer solves your concern then mark as accepted which will help future readers, thanks.

– Aaditya
Oct 16 '18 at 12:25










4 Answers
4






active

oldest

votes


















0














I think the following links will help you in achiveing the same



https://bsscommerce.com/blog/how-to-disable-compare-in-magento-2-full-tutorial/
Magento 2: Safe and easiest way to disable Compare products & Wishlist Module






share|improve this answer























  • Please don't put single links, Describe about your solution

    – Amit Bera
    Oct 11 '18 at 10:20


















0














you should add below code in your Magento_Theme/layout/default.xml file :



<referenceBlock name="catalog.compare.link" remove="true"/>
<referenceBlock name="catalog.compare.sidebar" remove="true"/>


This will delete from everywhere.






share|improve this answer























  • i want to remove in search result page for products in custom theme magento 2

    – hitesh balpande
    Oct 11 '18 at 6:09











  • if you add this piece of code in your theme's default.xml file it will remove from all places, however if you want to remove only from specific section then you should use this code in the required module / section layout.

    – Naveed Asim
    Oct 11 '18 at 6:19


















0














Disable compare in Layer Navigation:



Compare products block is defined in




vendor/magento/module-catalog/view/frontend/layout/default.xml




Now add a default.xml file to your theme in




/Magento_Catalog/layout/default.xml




Then remove your block as following:



 <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceBlock name="catalog.compare.sidebar" remove="true"/> </body> </page>




Disable compare in Product Page and Category Page:




  • You add the following xml instruction to your theme’s default xml
    file:





The xml file of your theme is located in




/app/design/frontend/Vendor/theme/Magento_Theme/layout/default.xml




or




Magento_Catalog/layout/default.xml




Reference






share|improve this answer






























    0














    if you want to disable or remove add to compare option from frontend side



    you can do the following



    go to app/design/frontend/Vendor/theme/Magento_Theme/layout/default.xml



    add below line just after body tag



    <referenceBlock name="catalog.compare.sidebar" remove="true"/>


    run this command




    php bin/magento cache:clean && php bin/magento cache:flush




    it will remove from catalog product listing as well as from search result






    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%2f246044%2fhow-to-remove-add-to-compare-in-catalog-search-result-page%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      4 Answers
      4






      active

      oldest

      votes








      4 Answers
      4






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      I think the following links will help you in achiveing the same



      https://bsscommerce.com/blog/how-to-disable-compare-in-magento-2-full-tutorial/
      Magento 2: Safe and easiest way to disable Compare products & Wishlist Module






      share|improve this answer























      • Please don't put single links, Describe about your solution

        – Amit Bera
        Oct 11 '18 at 10:20















      0














      I think the following links will help you in achiveing the same



      https://bsscommerce.com/blog/how-to-disable-compare-in-magento-2-full-tutorial/
      Magento 2: Safe and easiest way to disable Compare products & Wishlist Module






      share|improve this answer























      • Please don't put single links, Describe about your solution

        – Amit Bera
        Oct 11 '18 at 10:20













      0












      0








      0







      I think the following links will help you in achiveing the same



      https://bsscommerce.com/blog/how-to-disable-compare-in-magento-2-full-tutorial/
      Magento 2: Safe and easiest way to disable Compare products & Wishlist Module






      share|improve this answer













      I think the following links will help you in achiveing the same



      https://bsscommerce.com/blog/how-to-disable-compare-in-magento-2-full-tutorial/
      Magento 2: Safe and easiest way to disable Compare products & Wishlist Module







      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Oct 11 '18 at 4:36









      sugarsugar

      40611




      40611












      • Please don't put single links, Describe about your solution

        – Amit Bera
        Oct 11 '18 at 10:20

















      • Please don't put single links, Describe about your solution

        – Amit Bera
        Oct 11 '18 at 10:20
















      Please don't put single links, Describe about your solution

      – Amit Bera
      Oct 11 '18 at 10:20





      Please don't put single links, Describe about your solution

      – Amit Bera
      Oct 11 '18 at 10:20













      0














      you should add below code in your Magento_Theme/layout/default.xml file :



      <referenceBlock name="catalog.compare.link" remove="true"/>
      <referenceBlock name="catalog.compare.sidebar" remove="true"/>


      This will delete from everywhere.






      share|improve this answer























      • i want to remove in search result page for products in custom theme magento 2

        – hitesh balpande
        Oct 11 '18 at 6:09











      • if you add this piece of code in your theme's default.xml file it will remove from all places, however if you want to remove only from specific section then you should use this code in the required module / section layout.

        – Naveed Asim
        Oct 11 '18 at 6:19















      0














      you should add below code in your Magento_Theme/layout/default.xml file :



      <referenceBlock name="catalog.compare.link" remove="true"/>
      <referenceBlock name="catalog.compare.sidebar" remove="true"/>


      This will delete from everywhere.






      share|improve this answer























      • i want to remove in search result page for products in custom theme magento 2

        – hitesh balpande
        Oct 11 '18 at 6:09











      • if you add this piece of code in your theme's default.xml file it will remove from all places, however if you want to remove only from specific section then you should use this code in the required module / section layout.

        – Naveed Asim
        Oct 11 '18 at 6:19













      0












      0








      0







      you should add below code in your Magento_Theme/layout/default.xml file :



      <referenceBlock name="catalog.compare.link" remove="true"/>
      <referenceBlock name="catalog.compare.sidebar" remove="true"/>


      This will delete from everywhere.






      share|improve this answer













      you should add below code in your Magento_Theme/layout/default.xml file :



      <referenceBlock name="catalog.compare.link" remove="true"/>
      <referenceBlock name="catalog.compare.sidebar" remove="true"/>


      This will delete from everywhere.







      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Oct 11 '18 at 4:36









      Naveed AsimNaveed Asim

      2,7442317




      2,7442317












      • i want to remove in search result page for products in custom theme magento 2

        – hitesh balpande
        Oct 11 '18 at 6:09











      • if you add this piece of code in your theme's default.xml file it will remove from all places, however if you want to remove only from specific section then you should use this code in the required module / section layout.

        – Naveed Asim
        Oct 11 '18 at 6:19

















      • i want to remove in search result page for products in custom theme magento 2

        – hitesh balpande
        Oct 11 '18 at 6:09











      • if you add this piece of code in your theme's default.xml file it will remove from all places, however if you want to remove only from specific section then you should use this code in the required module / section layout.

        – Naveed Asim
        Oct 11 '18 at 6:19
















      i want to remove in search result page for products in custom theme magento 2

      – hitesh balpande
      Oct 11 '18 at 6:09





      i want to remove in search result page for products in custom theme magento 2

      – hitesh balpande
      Oct 11 '18 at 6:09













      if you add this piece of code in your theme's default.xml file it will remove from all places, however if you want to remove only from specific section then you should use this code in the required module / section layout.

      – Naveed Asim
      Oct 11 '18 at 6:19





      if you add this piece of code in your theme's default.xml file it will remove from all places, however if you want to remove only from specific section then you should use this code in the required module / section layout.

      – Naveed Asim
      Oct 11 '18 at 6:19











      0














      Disable compare in Layer Navigation:



      Compare products block is defined in




      vendor/magento/module-catalog/view/frontend/layout/default.xml




      Now add a default.xml file to your theme in




      /Magento_Catalog/layout/default.xml




      Then remove your block as following:



       <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceBlock name="catalog.compare.sidebar" remove="true"/> </body> </page>




      Disable compare in Product Page and Category Page:




      • You add the following xml instruction to your theme’s default xml
        file:





      The xml file of your theme is located in




      /app/design/frontend/Vendor/theme/Magento_Theme/layout/default.xml




      or




      Magento_Catalog/layout/default.xml




      Reference






      share|improve this answer



























        0














        Disable compare in Layer Navigation:



        Compare products block is defined in




        vendor/magento/module-catalog/view/frontend/layout/default.xml




        Now add a default.xml file to your theme in




        /Magento_Catalog/layout/default.xml




        Then remove your block as following:



         <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceBlock name="catalog.compare.sidebar" remove="true"/> </body> </page>




        Disable compare in Product Page and Category Page:




        • You add the following xml instruction to your theme’s default xml
          file:





        The xml file of your theme is located in




        /app/design/frontend/Vendor/theme/Magento_Theme/layout/default.xml




        or




        Magento_Catalog/layout/default.xml




        Reference






        share|improve this answer

























          0












          0








          0







          Disable compare in Layer Navigation:



          Compare products block is defined in




          vendor/magento/module-catalog/view/frontend/layout/default.xml




          Now add a default.xml file to your theme in




          /Magento_Catalog/layout/default.xml




          Then remove your block as following:



           <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceBlock name="catalog.compare.sidebar" remove="true"/> </body> </page>




          Disable compare in Product Page and Category Page:




          • You add the following xml instruction to your theme’s default xml
            file:





          The xml file of your theme is located in




          /app/design/frontend/Vendor/theme/Magento_Theme/layout/default.xml




          or




          Magento_Catalog/layout/default.xml




          Reference






          share|improve this answer













          Disable compare in Layer Navigation:



          Compare products block is defined in




          vendor/magento/module-catalog/view/frontend/layout/default.xml




          Now add a default.xml file to your theme in




          /Magento_Catalog/layout/default.xml




          Then remove your block as following:



           <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceBlock name="catalog.compare.sidebar" remove="true"/> </body> </page>




          Disable compare in Product Page and Category Page:




          • You add the following xml instruction to your theme’s default xml
            file:





          The xml file of your theme is located in




          /app/design/frontend/Vendor/theme/Magento_Theme/layout/default.xml




          or




          Magento_Catalog/layout/default.xml




          Reference







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Oct 11 '18 at 4:39









          AadityaAaditya

          4,16621139




          4,16621139





















              0














              if you want to disable or remove add to compare option from frontend side



              you can do the following



              go to app/design/frontend/Vendor/theme/Magento_Theme/layout/default.xml



              add below line just after body tag



              <referenceBlock name="catalog.compare.sidebar" remove="true"/>


              run this command




              php bin/magento cache:clean && php bin/magento cache:flush




              it will remove from catalog product listing as well as from search result






              share|improve this answer



























                0














                if you want to disable or remove add to compare option from frontend side



                you can do the following



                go to app/design/frontend/Vendor/theme/Magento_Theme/layout/default.xml



                add below line just after body tag



                <referenceBlock name="catalog.compare.sidebar" remove="true"/>


                run this command




                php bin/magento cache:clean && php bin/magento cache:flush




                it will remove from catalog product listing as well as from search result






                share|improve this answer

























                  0












                  0








                  0







                  if you want to disable or remove add to compare option from frontend side



                  you can do the following



                  go to app/design/frontend/Vendor/theme/Magento_Theme/layout/default.xml



                  add below line just after body tag



                  <referenceBlock name="catalog.compare.sidebar" remove="true"/>


                  run this command




                  php bin/magento cache:clean && php bin/magento cache:flush




                  it will remove from catalog product listing as well as from search result






                  share|improve this answer













                  if you want to disable or remove add to compare option from frontend side



                  you can do the following



                  go to app/design/frontend/Vendor/theme/Magento_Theme/layout/default.xml



                  add below line just after body tag



                  <referenceBlock name="catalog.compare.sidebar" remove="true"/>


                  run this command




                  php bin/magento cache:clean && php bin/magento cache:flush




                  it will remove from catalog product listing as well as from search result







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Oct 11 '18 at 4:39









                  HiteshHitesh

                  1,2931423




                  1,2931423



























                      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%2f246044%2fhow-to-remove-add-to-compare-in-catalog-search-result-page%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

                      Best approach to update all entries in a list that is paginated?Best way to add items to a paginated listChoose Your Country: Best Usability approachUpdate list when a user is viewing the list without annoying themWhen would the best day to update your webpage be?What should happen when I add a Row to a paginated, sorted listShould I adopt infinite scrolling or classical pagination?How to show user that page objects automatically updateWhat is the best location to locate the comments section in a list pageBest way to combine filtering and selecting items in a listWhen one of two inputs must be updated to satisfy a consistency criteria, which should you update (if at all)?

                      Вунгтау (аеропорт) Загальні відомості | Див. також | Посилання | Навігаційне меню10°22′00″ пн. ш. 107°05′00″ сх. д. / 10.36667° пн. ш. 107.08333° сх. д. / 10.36667; 107.0833310°22′00″ пн. ш. 107°05′00″ сх. д. / 10.36667° пн. ш. 107.08333° сх. д. / 10.36667; 107.083337731608Vinh AirportVinh airport facelift improves serviceвиправивши або дописавши їївиправивши або дописавши їїр

                      Тонконіг бульбистий Зміст Опис | Поширення | Екологія | Господарське значення | Примітки | Див. також | Література | Джерела | Посилання | Навігаційне меню1114601320038-241116202404kew-435458Poa bulbosaЭлектронный каталог сосудистых растений Азиатской России [Електронний каталог судинних рослин Азіатської Росії]Малышев Л. Л. Дикие родичи культурных растений. Poa bulbosa L. - Мятлик луковичный. [Малишев Л. Л. Дикі родичи культурних рослин. Poa bulbosa L. - Тонконіг бульбистий.]Мятлик (POA) Сем. Злаки (Мятликовые) [Тонконіг (POA) Род. Злаки (Тонконогові)]Poa bulbosa Linnaeus, Sp. Pl. 1: 70. 1753. 鳞茎早熟禾 lin jing zao shu he (Description from Flora of China) [Poa bulbosa Linnaeus, Sp. Pl. 1: 70. 1753. 鳞茎早熟禾 lin jing zao shu he (Опис від Флора Китаю)]Poa bulbosa L. – lipnice cibulkatá / lipnica cibulkatáPoa bulbosa в базі даних Poa bulbosa на сайті Poa bulbosa в базі даних «Global Biodiversity Information Facility» (GBIF)Poa bulbosa в базі даних «Euro + Med PlantBase» — інформаційному ресурсі для Євро-середземноморського розмаїття рослинPoa bulbosa L. на сайті «Плантариум»