Some of my product price are not showing.

Topic summary

  • Prices are missing on certain product and collection pages, and those items can’t be added to cart. The store owner imported products via CSV and provided example URLs for debugging.

  • One suggestion is to inject CSS on product templates to force the price element to display (targeting the price container with display: block !important). This implies the price may be present in the DOM but hidden by theme styles.

  • Another suggestion is to revert any customized Liquid (Shopify’s templating language) related to the price section, especially if a custom “contact seller” button was added that could have altered or replaced the price block. Restoring the original theme code for price output may resolve it.

  • The store owner asked where to place the suggested code, indicating implementation guidance is still needed. No confirmation of a fix yet, and the issue remains open.

  • Key next steps: clarify the exact theme file/section for the CSS (e.g., theme.liquid or product template) and review recent customizations to the price/display code, rolling back to the default where necessary.

Summarized with AI on December 12. AI used: gpt-5.

Hi some of my product’s price are not showing from the shop page and customers can’t make the product add-to-cart for those. i have added the price and i add the products from a csv file.

here is my shop link : https://automodzgarage.com/collections/all

here is a product link: https://automodzgarage.com/products/angel-eyes-headlights-set-black-bmw-1-series-e87-04-11

Hello there @sadje I suggest that you try to implement this code below {% if template contains ‘product’ %}

#MainContent .product__info-container [id^="price-template"].no-js-hidden{ display: block !important; }

{% endif %}

Let me know if it works for you!

Hi @sadje

Have you added a customized code to the contact seller button for some products? I recommend you revert price’s code in your liquid file back to original code to solve the issue.

where should i need to post it?