leowebguy / craft-currency-converter
Craft plugin to convert currency using API & local storage
Installs: 2 670
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 1
Type:craft-plugin
Requires
- php: ^8.2
- craftcms/cms: ^5.0
Requires (Dev)
- craftcms/ecs: dev-main
- craftcms/phpstan: dev-main
- craftcms/rector: dev-main
- laravel/pint: ^1.14.0
README
Craft plugin to convert currency using API & local storage
IMPORTANT
Installation
Open your terminal and go to your Craft project:
cd /path/to/project
Then tell Composer to load the plugin:
composer require leowebguy/craft-currency-converter
In the Control Panel, go to Settings → Plugins and click the “Install” button for Currency Converter.
Go to rapidapi.com/natkapral/api/currency-converter5 → Get your Free API Key
In the Control Panel, go to Settings → Currency Converter → Paste and Save your API Key
You can also put it in your ENV file i.e. $CC_KEY
and set it over here.
CC_KEY=aaa123bbb234
Usage
The plugin exposes a Currency Converter's methods:
{% set amount = craft.entries.section('my-section').one().numberfield %} {{ craft.currency.conversion('USD', 'EUR', amount) }}
Also passing number as string:
{{ craft.currency.conversion('USD', 'EUR', 23) }}