- Code: Select all
<div id="contenu">
<script type="text/javascript">
function startGallery() {
var myGallery = new gallery($('myGallery'), {
timed: true,
useReMooz: false,
embedLinks: true,
useExternalCarousel: true,
carouselElement: 'carouselBox',
carouselHorizontal: false,
showCarouselLabel: false,
showArrows: true,
showCarousel: true,
activateCarouselScroller: true,
});
myGallery.showCarousel();
}
window.addEvent('domready',startGallery);
</script>
<div id="diapo">
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?></div>
<div id="carouselBox"></div>
</div>
Unfortunately, the slideInfoZone only appears when the gallery first loads up (initial image) and subsequent images appear but without the InfoZone. I searched around and found PROBLEM with EXTERNAL CAROUSEL (v2.0) (disappearing InfoZone) - http://smoothgallery.jondesign.net/forums/viewtopic.php?id=229 which suggested changing:
In jd.gallery.js, find the following (on/around Ln 207):
if (this.options.showCarousel)
and change it to:
if (this.options.showCarousel && this.carouselBtn)
However, no luck for me. Any suggestions? BTW, thanks for a great plugin!!









