Appearance
Price Fieldtype
The price fieldtype is a special fieldtype that can hold currency values.
By default the fieldtype field output a numeric value that can be used for the {exp:reinos_store:add_to_cart product_price=""}
parameter. It will always output the price as you entered, no calculation or manipulation is done here.
Fieldtype Modifiers
Below are the Fieldtype Modifiers. Those Variables can be used in the tag described above
:no_tax
Output the price without TAX and formatted
{your-field-name:no_tax}
:plus_tax
Output the price with TAX and formatted
{your-field-name:plus_tax} //fall back on the default tax value
{your-field-name:plus_tax tax_type="low"}
{your-field-name:plus_tax tax_type="high"}
:plus_tax_numeric
Output the price with TAX as a numeric value
{your-field-name:plus_tax_numeric} //fall back on the default tax value
{your-field-name:plus_tax_numeric tax_type="low"}
{your-field-name:plus_tax_numeric tax_type="high"}
:no_tax_numeric
Output the price without TAX as a numeric value
{your-field-name:no_tax_numeric}
:numeric
Output the price, as given as a numeric value
{your-field-name:numeric} //fall back on the default tax value
{your-field-name:numeric tax_type="low"}
{your-field-name:numeric tax_type="high"}
:formatted
Output the price, as given formatted
{your-field-name:formatted} //fall back on the default tax value
{your-field-name:formatted tax_type="low"}
{your-field-name:formatted tax_type="high"}