How can I remove wishlist and compare functions from Techclow theme?

hello,

I want to remove this 2 functions from the website theme “Techclow” :

  • Whishlist

  • Compare

How can i do this please ?

Website : https://www.reparetontel.fr (password : test)

Regards

Jonathan

Hey @yojo84

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag.

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Hello Moeed :slightly_smiling_face:

Thank you for helping.

It removed the icons on the top right corner. It’s a great start :grinning_face_with_smiling_eyes:

But when you go with the mouse over a product there is still the icon too and on product page there are this options mentionned too :disappointed_face:

Is it possible to delete them/hide them too ?

Thank you

Hey @yojo84
Keep the previous code I mentioned above and add another code above tag in theme.liquid file

.product-com-wish {
    display: none;
}
.product-hover button:nth-child(3) {
    display: none;
}
.product-hover button:nth-child(4) {
    display: none;
}

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Worked perfectly ! Thank you :grinning_face_with_smiling_eyes: