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;
Actually I want to remove add to compare in catalog search result page
magento2 catalogsearch
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.
add a comment |
Actually I want to remove add to compare in catalog search result page
magento2 catalogsearch
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
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♦ 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
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