Google ignoring seperator comma for my products Price in JSON LD. Need coding help

Hey All,

I’m facing the following problem. My store is using European prices that use a comma as a seperator.

For example: €13,95

Now what google does is that in the search results it turns this into:

€1395.00

I did find that below might be a solution:

JSON LD on my website seems to be handled by “Feedarmy”

The problem is that I have no idea how to edit the code to fix this. The following code on my website seems to handle this. Could anybody help me on how i could potentially fix this?

{% assign url = shop.url %}
{% if template contains ‘product’ %}

{% assign fa_current_variant = product.selected_or_first_available_variant %}
{%- assign fa_variant_count = product.variants | size -%}
{%- assign fa_count = 0 -%}

{% elsif template contains ‘article’ %}

{% elsif template contains ‘collection’ and collection.handle %}

{% endif %}

Hi.
You can use liquid filter - | divided_by: 100.00

“price”: “{{ fa_current_variant.price | money_without_currency | strip_html | divided_by: 100.00 | remove: ‘,’ }}”,

“price”: “{{ variant.price | money_without_currency | strip_html | divided_by: 100.00 | remove: ‘,’ }}”,

and check results here - https://search.google.com/test/rich-results