Well, looking at your Wordpress site again, it is almost impossible for us to figure out what exactly is wrong, but after studying it I noticed several things:stony wrote:Cool. Glad I could help you find your bug. Speaking of bugs, when I uncheck the option to upload and overwrite in settings for uploader, it still insists on staying checked when I actually upload. Not sure if you were ever planning on returning to the issue I had trouble with when I posted here but it remains unresolved. I removed your access privileges so let me know if you can tell me how we get the fotomoto shopping cart to work in my blog shop. Thanks! S
First of all, you are using what, 50 or more plugins on your website? I noticed you had 43 different javascripts loading for your website, which not only slows down the loading, but also is a recipe for complications.
... So related to this, I see you have 3x swfobject.js files in your wordpress. They are all the same javascript, but most likely different versions. There is a chance that the last one loaded will overwrite the first one, but also there may be a chance that loading duplicate versions of duplicate files may cause complications.
Furthermore, I don't know how many javascripts you are loading related to jQuery, but there are dozens, and I am assuming that somehow the fotomoto code we added may not be loading properly. So I would try this ... Instead of the code you added earlier:
Code
<script type="text/javascript">
// <![CDATA[
$(window).load(function () {
$.getScript('http://widget.fotomoto.com/stores/script/d38be31a98741bc78fd9a5f7755c33a27b95602d.js?api=true&aid=38e40b1303333859', function () {
window.getCaptions = function(captions) {
document.getElementById('imagevue').sendCaptions(captions);
}
window.getImageProducts = function(products) {
document.getElementById('imagevue').sendImageProducts(products);
}
});
});
// ]]>
</script>Code
<script type="text/javascript" src="http://widget.fotomoto.com/stores/script/d38be31a98741bc78fd9a5f7755c33a27b95602d.js?api=true&aid=38e40b1303333859"></script>
<script type="text/javascript">
// <![CDATA[
window.getCaptions = function(captions) {
document.getElementById('imagevue').sendCaptions(captions);
}
window.getImageProducts = function(products) {
document.getElementById('imagevue').sendImageProducts(products);
}
//]]>
</script>