How to disable Wishlist on your store?

Disabling Wishlist on a Shopify Store is simple. The Wishlist has 2 components, Wishlist button and the Wishlist link. You need to disable each one of them separately.

Wishlist Button.

1. If you have enabled the Auto Wishlist Button via App’s Settings, you can disable it from below location in Shopify Admin.

Apps > Smart Wishlist >Configure Appearance > Wishlist Button

2. If the wishlist has been configured manually,

  • Visit Apps > Smart Wishlist > Configure Appearance > Extra CSS
  • Add the following CSS to the firrst box.
  • Alternatively, you can also add it directly to the theme.
#smartwishlist, .smartwishlist {
    display: none !important;
}

Wishlist Link

1. If you have enabled the Smart Link from App’s Settings, you can disabled it from below location in Shopify Admin.

Apps > Smart Wishlist >Configure Appearance > Wishlist Link

2. If the wishlist link has been added to the Navigation menu, you can remove it from the Navigation menu settings in Shopify Admin

3. If the Wishlist link has been hardcoded directly to the theme, you need to edit the corresponding theme file and remove it.

If you are unsure about the location of the Wishlist link or none of the above method works, simply add the following CSS to the theme.

a[href*=wishlist] {
    display: none !important;
}

Leave a Reply

Your email address will not be published. Required fields are marked *