Hi Shopify Community, we are currently having a problem on our collection pages where our compare at prices are appearing twice instead of the original price showing.
The information is showing correctly on the product pages so I am confused about what is happening.
For reference, we are currently using the Turbo theme and have the bold custom pricing app installed.
URL: https://amcstore.outdoors.org/collections/amc-huts
Look in the code in your collection thumbnail files, probably a snippet called something like “product-card.liquid”.
There, you’ll find the Liquid code (https://shopify.dev/docs/themes/liquid/reference) that controls what shows on your site.
Based on the information given, it sounds like that app was not installed properly, I’m guessing someone copy pasted {{ product.compare_at_price }} twice instead of showing {{ product.price }} (the actual price).
Another way you can identify this problem is downloading your theme file, then search for product.compare_at_price. That should lead you to the file where the code is, then you can read the code and try to see where the duplication is happening / product.price missing.