Staccato 2011
function credova_ala(_price){ if(_price){ if(_price.indexOf('-') > -1){ _price = _price.split("-")[0]; } _price = _price.substring(1, _price.length); _price = _price.split(',').join(''); jQuery(".credova-button").attr("data-amount",_price); jQuery(".crdv-button").remove(); CRDV.plugin.config({ environment: CRDV.Environment.Production, store: "KWA000" }); CRDV.plugin.inject("credova-button"); } } jQuery(document).ready(function() { jQuery(".credova-button").attr("data-amount",0); jQuery(".crdv-button").remove(); credova_ala(jQuery(".bc-product-single__meta .bc-product__price").text()); }); jQuery(document).on("DOMSubtreeModified", ".bc-show-current-price", function(){ credova_ala(jQuery(".bc-product-single__meta .bc-product__price").text()); });