We've done some more testing, and have it fully working. Here are the setup instructions for this:
1. Copy the Javascript code for Dynamic Converter that they provide you to your clipboard
2. In version 3.x:
open the template file store_main.tpl.php (see this page for instructions on modifying template files).
In version 2.x:
Open your storefront page (store.php by default)
3. Locate the closing body tag:
4. Paste their Javascript directly befopre that closing body tag
5. Save the file
6. Open the template file option_select.tpl.php in an editor
Important - See this page for instructions on modifying templates:
http://squirrelcart.com/help/?Modify...Templates.html
7. Locate the select tag, and find the class attribute:
Code:
class="<?=$Missing_BG_Class?>"
Add a "dcconvert" class inside the quotes:
Code:
class="<?=$Missing_BG_Class?> dcconvert"
8. Save the file
If you aren't using the QuickTotal module, stop here.
9. Open squirrelcart/modules/quick_total/quick_total.js.php in an editor
10. Scroll to the very bottom of the file, and find this code:
Code:
// update item total on product page
prodTotalTag.innerHTML = '<?php print $SC['settings']['Currency_Symbol']?>' + prodTotal;
}
</script>
11. Before the closing brace } add this:
Code:
// call dynamic convertor
if (window.dc_convert_now) dc_convert_now();
The bottom of that file should now look like this:
Code:
// update item total on product page
prodTotalTag.innerHTML = '<?php print $SC['settings']['Currency_Symbol']?>' + prodTotal;
// call dynamic convertor
if (window.dc_convert_now) dc_convert_now();
}
</script>
12. Save the file