How to remove add to compare in catalog search result page?
.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♦ 14 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♦ 14 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♦ 14 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♦ 14 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