Pricing not showing on Collections page

Hi there, I am new to shopify, and have set up my store and collections. However, on the Collections page, it doesn’t show any prices at all.

I am using the Shopify theme called Feather.

I have tried custom css, but nothing is working.

Please assist.

My URL is https://apple-chalk-designs.myshopify.com/collections/

Hey @brendonm96

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above </ body> tag
<style>
h6, .h6.h6, .text-block.h6>* {
    font-size: 1rem !important;
}
</style>

RESULT:

If I managed to help you then a Like would be truly appreciated.

Best,
Moeed

Hi,

Hope this will help

  • Check feather theme collection settings
  • Confirm products actually have prices set
  • Make sure you’re not viewing a password protected or draft state

CSS can hide or style prices, but it can’t display something the theme isn’t rendering. If the price markup is disabled in the theme settings or template CSS won’t bring it back.

Thank you that worked, my other question, the images are also not all the same size, I cannot seem to find in the settings about the image ratio/sizing like in Woocommerce.

Is there a way to make them all the same size?

Remove the previous code which you added and add this updated code

<style>
h6, .h6.h6, .text-block.h6>* {
    font-size: 1rem !important;
}
slideshow-slide.product-media-container.media-fit.product-media-container--image {
    height: 350px !important;
}
</style>

Awesome, thank you that worked!

Appreciate the help!

Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.

Cheers,
Moeed