Hi,
It’s happening for javascript conflict. you site showing lots of js error.
like:
Error: $(“ul.menu”).superfish is not a function
Source File: http://www.fluid-studio.net/spc/blog/2011/07/19/how-to-install-a-water-fountain/
Line: 54
I got rid of the superfish error. and now I get a js error from the Download Manager that says
jQuery(“.wpdm-popup”).colorbox is not a function
[Break On This Error] jQuery(‘.wpdm-popup’).colorbox();
How do I fix it?
add jQuery.noConflict(); or remove “jQuery” with “$” from download-manager.php line# 483 and 484 .
<script language="JavaScript">
<!--
$(function(){
$('.wpdm-popup').colorbox();
})
//-->
</script>
I made the change and this is what I have in there. I still have the same problem. Nothing has changed.
Nothing ever will if you depend on this developer to provide support. If you bought the app, start a dispute in Paypal and get your money back.
I had this problem too.
I hate editing the plugins as it just creates problems when you upgrade/update them…
I changed mine to
<script language=”JavaScript”>
<!–
jQuery(function($){
$(‘.wpdm-popup’).colorbox();
});
//–>
</script>