Hide price on feature page (Motion theme)

Topic summary

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:

  • Initial suggestion involved adding CSS code to hide prices by targeting .grid-product__content .grid-product__price with display: none !important
  • The code needed to be inserted in the theme.liquid file before the closing </body> tag
  • First attempt failed due to missing <style> tags around the CSS

Resolution:
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.

Summarized with AI on November 17. AI used: claude-sonnet-4-5-20250929.

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:

  1. Go to Online Store → Theme → Edit code

  2. 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

Like this? It doesn’t work for me sadly.

Please help

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:

  1. Go to Online Store → Theme → Edit code
  2. Open your theme.liquid file
  3. Paste below code before :

Best regards,

Anthony

This worked, thank you for your help!