Adding Currency Conversion

From eStyleCentral Help
(Difference between revisions)
Jump to: navigation, search
(New page: Category:Developers ==Add Currency Conversion to an eSC Web Site== Price can be displayed in various currencies by installing the following code snippets: Add the currency selector...)
Current revision (19:11, 25 September 2013) (view source)
 
(2 intermediate revisions not shown.)
Line 3: Line 3:
==Add Currency Conversion to an eSC Web Site==
==Add Currency Conversion to an eSC Web Site==
-
Price can be displayed in various currencies by installing the following code snippets:
+
Prices can be displayed in various currencies by installing the following code snippets:
Add the currency selector menu where desiered:
Add the currency selector menu where desiered:
-
<code>
+
<source lang="html4strict">
<select id="currencies" name="currencies">
<select id="currencies" name="currencies">
     <option value="USD" selected="selected">USD</option>
     <option value="USD" selected="selected">USD</option>
Line 15: Line 15:
     <option value="AUD">AUD</option>
     <option value="AUD">AUD</option>
</select>
</select>
-
</code>
+
</source>
Add the javascript source file in General Settings -> HTML Inserts -> 5) -> http:
Add the javascript source file in General Settings -> HTML Inserts -> 5) -> http:
-
<code>
+
 
 +
<source lang="html4strict">
<script src="http://efashioncentral.com/ar/js/curr/curr.js?2" type="text/javascript"></script>
<script src="http://efashioncentral.com/ar/js/curr/curr.js?2" type="text/javascript"></script>
-
</code>
+
</source>
and  
and  
General Settings -> HTML Inserts -> 5) -> https:
General Settings -> HTML Inserts -> 5) -> https:
-
<code>
+
<source lang="html4strict">
<script src="https://www.efcsecurecheckout.com/ar/js/curr/curr.js?2" type="text/javascript"></script>
<script src="https://www.efcsecurecheckout.com/ar/js/curr/curr.js?2" type="text/javascript"></script>
-
</code>
+
</source>

Current revision


Add Currency Conversion to an eSC Web Site

Prices can be displayed in various currencies by installing the following code snippets:


Add the currency selector menu where desiered:

<select id="currencies" name="currencies">
    <option value="USD" selected="selected">USD</option>
    <option value="CAD">CAD</option>
    <option value="EUR">EUR</option>
    <option value="GBP">GBP</option>
    <option value="AUD">AUD</option>
</select>

Add the javascript source file in General Settings -> HTML Inserts -> 5) -> http:

<script src="http://efashioncentral.com/ar/js/curr/curr.js?2" type="text/javascript"></script>

and

General Settings -> HTML Inserts -> 5) -> https:

<script src="https://www.efcsecurecheckout.com/ar/js/curr/curr.js?2" type="text/javascript"></script>
Personal tools