lieselot_printint
Member
Posted 4 months ago #
Hi,
I can't find a solution in the forum so i ask the question myself.
I have different slideshows on every page.
I put this on the pages where i need it:
<?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow( "markt", "" ); } ?>
I upload pictures and put it as highlight picture,that works.
But when I look at my slideshow I only see the last picture i added. it won't show the other pictures.
any idea what i'm doing wrong?
grts,
L.
http://wordpress.org/extend/plugins/meteor-slides/
It sounds like the slideshow is broken, did it work before you started adding multiple slideshows? Could you post a link to the site you're working on?
lieselot_printint
Member
Posted 4 months ago #
hi,
now that i think of it, it didn't work with one slideshow.
it's
http://www.bewust12.be/www.residentiecampens.be/
Yeah, your theme has some jQuery conflicts that are breaking the slideshow. Firebug is showing me two scripts that use the $ shortcut which isn't available in WordPress because jQuery is loaded in "no conflict" mode.
The simplest way to fix the problem is to change the "$" shortcuts to "jQuery". The first conflict I found is with the image.hover.js file: http://www.bewust12.be/www.residentiecampens.be/wp-content/themes/colorway/js/image.hover.js?ver=3.3
The second is an internal script that is probably in your theme's header.php file:
<script type="text/javascript">
Cufon.replace('h1')('h2')('h3')('h4')('h5')('h6');
$(function() {
$('.social_logo a').tipsy();
});
$(function() {
$('a.zoombox').zoombox();
});
</script>
There could be other conflicts, but those are the two that Firebug is reporting.
lieselot_printint
Member
Posted 4 months ago #
hi,
this fixes a couple of my problems.
I need to check firebug more ofter
thx!!