Hide Seal Subscriptions on Collections Page

Solved

Hide Seal Subscriptions on Collections Page

jasminsharp97
Shopify Partner
105 1 33

Hi, I have this page that has subscription options available, but I don't want to have subscription options showing anywhere other than product detail pages. How do I remove the Seal Subs section from this page? https://vidavitalmedicalshop.com/collections/all

Accepted Solution (1)

pawankumar
Shopify Partner
754 111 128

This is an accepted solution.

Hi @jasminsharp97 
Please put this code in theme.liquid before body closing tag </body>

<style>
.product-grid-container .sealsubs-target-element.sealsubs-full[data-seal-ac],
.product-grid-container .sealsubs-target-element.sealsubs-full[data-seal-in] {
  display: none;
}
</style>

Check if it works 
Thanks!

- Need a Shopify developer? Chat on WhatsApp +91-9467121281
- Coffee Tip: Buymeacoffee  | Email: thepkpawankumar@gmail.com
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
Best regards,
Pawan

View solution in original post

Replies 3 (3)

BiDeal-Discount
Shopify Partner
785 101 174

Hi @jasminsharp97 

let try to add this custom css code:

.product-grid-container .sealsubs-target-element.sealsubs-full[data-seal-ac],
.product-grid-container .sealsubs-target-element.sealsubs-full[data-seal-in] {
  display: none;
}
- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp

pawankumar
Shopify Partner
754 111 128

This is an accepted solution.

Hi @jasminsharp97 
Please put this code in theme.liquid before body closing tag </body>

<style>
.product-grid-container .sealsubs-target-element.sealsubs-full[data-seal-ac],
.product-grid-container .sealsubs-target-element.sealsubs-full[data-seal-in] {
  display: none;
}
</style>

Check if it works 
Thanks!

- Need a Shopify developer? Chat on WhatsApp +91-9467121281
- Coffee Tip: Buymeacoffee  | Email: thepkpawankumar@gmail.com
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
Best regards,
Pawan
jasminsharp97
Shopify Partner
105 1 33

That worked thank you!