Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove "My Wish List" and "Compare Products" blocks from Magento 2.0 Luma template?

I have spent a lot of hours trying to remove "My Wish List" and "Compare Products" blocks from Luma template. Besides, I need to change and remove some of the bottom links.

I cannot find where to modify. Can you help me, please?

Thanks

like image 606
jstuardo Avatar asked Jan 08 '16 01:01

jstuardo


People also ask

How do I get rid of compare products in Magento 2?

Steps To Disable Compare Products In Magento 2 1. Go to app/design/frontend/Theme_Vendor/Theme_Name/Magento_Catalog/layout. 3. Save the file and the Compare Products was disable.


1 Answers

I've tried following step it worked for me.

1. My Wish List

For wish List you need to remove it via Admin > Stores > Configuration > Customers > Wish list > General Options make to enabled to no and then save it.

2. Compare Product

Here you need to do some coding level changes. follow me

Go to vendor > magento > theme-frontend-luma > Magento_Catalog > layout > default.xml

Open this file find this tag "" and before body end tag put the following code

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

Make sure this will remove compare product from category product listing however you can uses this to any layout.

Once you done with this don't forget to clearing cache if enable otherwise you will not get desirable output.

Let me know if you have still any query

like image 165
samumaretiya Avatar answered Oct 01 '22 17:10

samumaretiya