Important
The
"AUTO DETECT PRICES" option
must be selected in
Step 1 (selected by default).
Step 3. Pasting the Installation String into your website.
Under 'Step 2. - Installation String', on the
Dynamic Converter Settings page in the text box, you will see the Installation String for
yoursite. That Installation String now needs to be added to your web site pages.
Login to the administration control for your website.
- Click on 'Store Design' (top right menu)
- Click on 'Template Files' tab
- Expand the 'Panels' tree
- Select 'footer.html' and edit
- Paste the Installation String into the end of the page
- [Optional] if you have your product price change on selecting an option please paste the below code.
<!-- Dynamic Converter Injection -->
<script language="JavaScript" type="text/javascript">
// Jquery contentChange plugin from http://stackoverflow.com/users/290221/sebastian-grignoli
jQuery.fn.contentChange = function(callback){
var elms = jQuery(this);
elms.each(
function(i){
var elm = jQuery(this);
elm.data("lastContents", elm.html());
window.watchContentChange = window.watchContentChange ? window.watchContentChange : [];
window.watchContentChange.push({"element": elm, "callback": callback});
}
)
return elms;
}
setInterval(function(){
if(window.watchContentChange){
for( i in window.watchContentChange){
if(window.watchContentChange[i].element.data("lastContents") != window.watchContentChange[i].element.html()){
window.watchContentChange[i].callback.apply(window.watchContentChange[i].element);
window.watchContentChange[i].element.data("lastContents", window.watchContentChange[i].element.html())
};
}
}
},500);
// End Plugin
$('.VariationProductPrice').contentChange(function() { if (window.dc_convert_now) dc_convert_now(); });
</script>
<!-- //Dynamic Converter Injection -->
- Click 'Save'
Installation Complete.