Hi there, I’m using Motion theme. I was able to hide prices on the products pages but how can i hide price on the features products, Landing page. (https://novostudioevents.com/))
Please help!
Thanks
Arpha
A user needed to hide product prices on the featured products section of their landing page using Shopify’s Motion theme, having already successfully hidden prices on individual product pages.
Solution Process:
.grid-product__content .grid-product__price with display: none !importanttheme.liquid file before the closing </body> tag<style> tags around the CSSResolution:
After correcting the implementation to properly wrap the CSS in <style> tags within the theme.liquid file, the solution successfully hid prices from the featured products section. The user confirmed it worked after the corrected code was provided.
Hi there, I’m using Motion theme. I was able to hide prices on the products pages but how can i hide price on the features products, Landing page. (https://novostudioevents.com/))
Please help!
Thanks
Arpha
Hello @NovoStudio23 ,
Follow these steps:
Go to Online Store → Theme → Edit code
Open your theme.liquid under templates
Now hear search for once found just before it paste this css.
.grid-product__content .grid-product__price {
display: none !important;
}
Thanks
Position is right but the style tag is missing, sorry for my mistake.
Please use this one.
Hi @NovoStudio23 ,
This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.
While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:
Best regards,
Anthony
This worked, thank you for your help!