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;
Actually I want to remove add to compare in catalog search result page
magento2 catalogsearch
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.
add a comment |
Actually I want to remove add to compare in catalog search result page
magento2 catalogsearch
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
add a comment |
Actually I want to remove add to compare in catalog search result page
magento2 catalogsearch
Actually I want to remove add to compare in catalog search result page
magento2 catalogsearch
magento2 catalogsearch
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
add a comment |
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
add a comment |
4 Answers
4
active
oldest
votes
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
Please don't put single links, Describe about your solution
– Amit Bera♦
Oct 11 '18 at 10:20
add a comment |
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.
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
add a comment |
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
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
Please don't put single links, Describe about your solution
– Amit Bera♦
Oct 11 '18 at 10:20
add a comment |
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
Please don't put single links, Describe about your solution
– Amit Bera♦
Oct 11 '18 at 10:20
add a comment |
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
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
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
add a comment |
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
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Oct 11 '18 at 4:39
AadityaAaditya
4,16621139
4,16621139
add a comment |
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Oct 11 '18 at 4:39
HiteshHitesh
1,2931423
1,2931423
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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