A Guide to Multi-Currency Support with Paytring
quick_currency_code
sessionStorage.setItem('quick_currency_code', 'CAD');
<script> // Create and append the script const script = document.createElement('script'); script.src = 'https://cdn.paytring.com/js/magic/tools/currency_convertor.v2.0.0.js'; script.async = true; script.onload = () => { cc_SYNC_RATES(); cc_SET_SUPPORTED_CURRENCIES(["INR","AED","USD","SGD","GBP","EUR"]); cc_CAN_USER_CHANGE_CURRENCY(true); cc_SET_SELECTOR_POSITION("right-bottom"); cc_SET_LOCATION_BASE_CURRENCY_SWITCH(true); }; script.onerror = () => console.error('Failed to load the currency converter script.'); document.head.appendChild(script); </script> <style> .money { opacity:0; } </style>