Currency Translation Configuration

If you want to allow the user to display the prices in a different currency in the store, you can configure this via TypoScript.

plugin.tx_cart {
    settings {
        currencies {
            default = 1
            1 {
                code = EUR
                sign = 
                translation = 1.00
            }
        }
    }
}

Property

plugin.tx_cart.settings.currency.default

Data type

int

Description

Defines with which the default currency of a new shopping cart should be.

Default

1

Property

plugin.tx_cart.settings.currency.n

Data type

array

Description

List of the different currencies available.

Property

plugin.tx_cart.settings.currency.n.code

Data type

array

Description

Three-digit international currency code according to ISO 4217 (Wikipedia). This is among other things for different payment providers and as a parameter for changing the currency in the shopping cart.

Default

EUR

Property

plugin.tx_cart.settings.currency.n.sign

Data type

array

Description

Currency symbol, if available for the currency.

Default

Property

plugin.tx_cart.settings.currency.n.translation

Data type

array

Description

Currency conversion factor. The price of the products is divided by this factor.

Default

1.0

Note

At the moment there is no automatism to update the factor and adjust it to a current value. With scheduler task, it should be possible to connect a corresponding service quite quickly.