Hide wishlist button

Hi,

I’d like to hide the wishlist button on my product page: https://luxurymrkt.com/products/fendi-olock-swing-tiffany-blue-calf-leather-small-hobo-shoulder-bag

Hi @Luxurymrkt
Please put this css in theme.liquid before body closing tag


Thanks!

Hi @Luxurymrkt ,

You can try this code by following these steps:

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file → Save

button.wk-button.wk-button--add {
    display: none !important;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

Hi @Luxurymrkt

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “theme. Liquid” file. Find the tag and paste the code below before the tag.

{% if template == 'product' %}

{% endif %}

And Save.