Hi Nicolas,
Actually I'm having issue with this part of code for the characteristic :-
Hope you can advise how I should modify the code. Thanks!
function hikashopUpdateVariantData(selection){
if(selection){
var names = [\'id\',\'name\',\'code\',\'image\',\'price\',\'quantity\',\'description\',\'weight\',\'url\',\'width\',\'length\',\'height\',\'contact\',\'custom_info\',\'files\'];
var len = names.length;
for (var i = 0; i < len; i++){
var el = document.getElementById(\'hikashop_product_\'+names+\'_main\');
var el2 = document.getElementById(\'hikashop_product_\'+names+selection);
if(el && el2) el.innerHTML=el2.innerHTML; // this part makes the page css runs from its style and jquery not working. If I disable this line, then it will be fine but the characteristic options will no longer work.
}
if(typeof this.window[\'hikashopRefreshOptionPrice\'] == \'function\') hikashopRefreshOptionPrice();
}
return true;
}