I am trying to update the prices on Shopify theme I have added the same code (| times: 1.16) in another snippet and it works fine but it doesn't work in another snippet.
{%- capture _price -%}{%- if value != blank -%}{%- if settings.currency_format == 'money_with_currency_format' -%}{{- value | money_with_currency -}}{%- else -%}{{- value | money -}}{%- endif -%}{%- endif -%}{%- endcapture -%}
{% assign newPrice = _price | times: 1.16%}
{{ newPrice }}
{% comment %} The expected output was from $5,657.00 to $6,562.12 but it changes to zero instead {% endcomment %}