XDR | STD |
---|---|
1 XDR | 29259.331239298 STD |
5 XDR | 146296.65619649 STD |
10 XDR | 292593.31239298 STD |
25 XDR | 731483.28098245 STD |
50 XDR | 1462966.5619649 STD |
100 XDR | 2925933.1239298 STD |
500 XDR | 14629665.619649 STD |
1000 XDR | 29259331.239298001 STD |
5000 XDR | 146296656.19648999 STD |
10000 XDR | 292593312.39297998 STD |
50000 XDR | 1462966561.964900017 STD |
STD | XDR |
---|---|
1 STD | 0.000034177 XDR |
5 STD | 0.000170886 XDR |
10 STD | 0.000341771 XDR |
25 STD | 0.000854428 XDR |
50 STD | 0.001708857 XDR |
100 STD | 0.003417713 XDR |
500 STD | 0.017088566 XDR |
1000 STD | 0.034177131 XDR |
5000 STD | 0.170885656 XDR |
10000 STD | 0.341771311 XDR |
50000 STD | 1.708856556 XDR |
This set of widgets will provide inline currency conversions to your e-commerce websites for helping your customers around the world to understand your prices in their local currencies, or even in crypto currencies.
Our widgets will work on HTML entities, no Javascript programming is required.
For example, you got an e-commerce website selling T-shirts displaying a list of products like:
which is represented by the HTML code:
<ul>
<li>Red T-shirt XDR 45</li>
<li>Blue T-shirt XDR 123</li>
</ul>
First, we will be including a "script" tag to boot the widgets and we will configure the base currency of our e-commerce website inside of an empty HTML tag like in the next HTML code snippet:
<script src='https://currencyexchange.lucentinian.com/tools.js' async>
</script>
<div
class="lucentinian-currencyexchange-cfg"
data-base="XDR"
data-target="STD"
data-decimals="2"
></div>
Additionally you can set an initial target currency (later its value will be overrided by the change target currency widget) and fix the number of decimals you want to be displayed like in the previous example.
Please notice the configuration is mandatory, otherwise the widgets won't start.
Now we will be bounding the prices with an HTML entity like "span", assign them the class "lucentinian-currencyexchange", and add the data attribute "data-amount" with the original price in the configured base currency like in the next HTML code nippet:
<ul>
<li>Red T-shirt <span
class='lucentinian-currencyexchange'
data-amount='45'>XDR 45</span>
</li>
<li>Blue T-shirt <span
class='lucentinian-currencyexchange'
data-amount='123'>XDR 123</span>
</li>
</ul>
After the changes, the list is now displayed as:
As it was mentioned above, there is a widget that can be included to allow your customer to change the target currency you may have fix at the beginning and use other by including an empty HTML tag with the class "lucentinian-currencyexchange-cfg" as in the next HTML code snippet:
<div>
Change currency
<span class='lucentinian-currencyexchange-select-currency'>
</span>
</div>
which will be displayed as:
Please notice that the changes of your customer will have priority over the initial target currency configuration, and the changes will be stored in the web browser.
Finally, but not least, prices can be fixed for specific currencies instead of using the converted value. In order to archive this, to the HTML entity that are bounding the price, add the data attribute "data-CURRENCY_CODE-amount" with the fix value. From the example above, a HTML code snippet will look like:
<div>Red T-shirt <span
class='lucentinian-currencyexchange'
data-amount='45'
data-STD-amount='123'>XDR 45</span>
</div>
which will be displayed with "STD 123" if the user has selected the currency STD in the change currency widget of above: