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

What does CI-V stand for?

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

Which models of the Boeing 737 are still in production?

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

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

Today is the Center

Can I ask the recruiters in my resume to put the reason why I am rejected?

Is it legal for company to use my work email to pretend I still work there?

Dragon forelimb placement

Is it unprofessional to ask if a job posting on GlassDoor is real?

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

Do I have a twin with permutated remainders?

Example of a continuous function that don't have a continuous extension

Fencing style for blades that can attack from a distance

Service Entrance Breakers Rain Shield

Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)

I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine

Do VLANs within a subnet need to have their own subnet for router on a stick?

What would happen to a modern skyscraper if it rains micro blackholes?

Python: next in for loop

Can I make popcorn with any corn?

the place where lots of roads meet

Modeling an IPv4 Address

Animated Series: Alien black spider robot crashes on Earth



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 yesterday


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 yesterday


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 yesterday


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 yesterday


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

                      Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

                      Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                      Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form