Hi,
Locate the Price Display Code
Create a New Snippet ( For Custom Money Filter)
{% comment %}
Snippet to display money without trailing zeros
{% endcomment %}
{% assign formatted_value = amount | divided_by: 100.0 %}
{% if formatted_value contains '.' %}
{% assign amount_parts = formatted_value | split: '.' %}
{{ amount_parts[0] }}
{% else %}
{{ formatted_value }}
{% endif %}