Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.fourthwall.com/llms.txt

Use this file to discover all available pages before exploring further.

Format monetary values as currency strings. All money filters accept a price value and return a formatted string using the shop’s currency.
FilterDescriptionExample
moneyStandard currency format{{ product.price | money }}$25.00
money_without_currencyHide currency symbol{{ product.price | money_without_currency }}25.00
money_without_cents_if_wholeOmit cents when .00{{ product.price | money_without_cents_if_whole }}$25

No-exchange money filters

These variants format the price without applying currency conversion:
FilterDescription
money_no_exchangeFormat without currency conversion
money_no_exchange_without_currencyWithout exchange, no symbol
money_no_exchange_without_cents_if_wholeWithout exchange, omit .00

Money arithmetic

<!-- Multiply a money value -->
{{ product.price | money_times: 2 }}