How can I display sales percentage and make the compare at price visible in Bullet theme?

Topic summary

A user running the Bullet theme wants to enhance their sales display by:

Main requests:

  • Make sales visible on the main menu and all product pages
  • Replace the generic “sale” badge with the actual discount percentage
  • Change the badge color
  • Improve visibility on both desktop and mobile versions

The user has already tried various code solutions from similar discussions without success and shared three screenshots showing the current state of their website.

Responses:

  • One commenter suggested contacting the theme developer (Open Thinking) directly
  • Another provided a Liquid code snippet to calculate and display the discount percentage, which should be added where prices render in collection grids and product pages

Status: The discussion remains open with one potential code solution offered but not yet confirmed as working.

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

Hi, I am launching the sales period on my website running on the Bullet theme, and I would like it to be visible on the main menu and in all of the product pages, as well as the “sale” badge replaced by the sale percentage, preferably of a different colour.

I have tried all of the codes suggested by experts on similar cases but none of them worked.

Attaching below what the website currently looks like from a mobile version and it shows the same with the desktop version, and I am quite not happy with the visibility it gives to the customer regarding the sales.

would be grateful for the assistance,

thanks.

1 Like

Hi Mariabaza - have you reached out to the theme developer Open Thinking?

Hello @mariabaza , You can try the code below, add this code where your price is render and showing in the collections grid and products.

{%- if product.compare_at_price > product.price and product.quantity_price_breaks_configured? != true %} 
     ({{ product.compare_at_price_max | minus: variant_price | times: 100.0 | divided_by: product.compare_at_price_max | money_without_currency | times: 100 | remove: '.0'}}% OFF)
    {% endif %}

Feel free to reach out if you have any questions or need assistance.
Best Regards,
DWS.