All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
This is an accepted solution.
Hello @hem0903
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
.product__wrapper .shopify_subscriptions_purchase_option_wrapper label {
display: none !important;
}
.product__wrapper .shopify_subscriptions_app_block_label.shopify_subscriptions_purchase_option_wrapper label{
display: flex !important;
}
</style>
RESULT:
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
This is an accepted solution.
Hello @hem0903
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
.product__wrapper .shopify_subscriptions_purchase_option_wrapper label {
display: none !important;
}
.product__wrapper .shopify_subscriptions_app_block_label.shopify_subscriptions_purchase_option_wrapper label{
display: flex !important;
}
</style>
RESULT:
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hi @hem0903
Try this one.
fieldset.shopify_subscriptions_fieldset > div > .shopify_subscriptions_app_block_label:nth-child(2) > div > label {
display: none !important;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!