As usual, same questions :
– any javascript error ?
– tryed to disable all plugins but this one ? did the plugin working alone ?
— if yes : did you tryed to activates all plugins one by one to find wich plugin is messing ?
Hi Jeff. Thanks for your response. I’ve tried disabling all plugins and that made no difference. My guess is that it is a javascript thing. But, what am I looking for and where? How will I know an error if I see one?
This what is on the relevatn page
<!– added by plugin FrontpageSlideshow –>
<script type=”text/javascript”>
/* <![CDATA[ */
var fslast = -1; // # of last slide (if less than 4)
var fsid = -1; // the current slide
var fsinterval = 0; // the setInterval var
function fsChangeSlide(id) {
$(‘fs-entry-‘+fsid).removeClassName(‘fs-current’);
fsid=id;
window.clearInterval(fsinterval);
new Effect.Fade(‘fs-slide’,{ duration: 0.5, afterFinish: fsChangeSlide2 });
}
function fsChangeSlide2() {
$(‘fs-picture’).style.backgroundImage=’url(‘+$(‘fs-entry-img-‘+fsid).src+’)’;
$(‘fs-title’).innerHTML=$(‘fs-entry-title-‘+fsid).innerHTML;
$(‘fs-excerpt’).innerHTML=$(‘fs-entry-comment-‘+fsid).innerHTML;
new Effect.Appear(‘fs-slide’,{ duration: 0.5});
$(‘fs-entry-‘+fsid).addClassName(‘fs-current’);
frontpageSlideshow();
}
function fsDoSlide() {
if (fsid>-1) $(‘fs-entry-‘+fsid).removeClassName(‘fs-current’);
fsid++;
if (fsid>fslast) fsid = 0; // new loop !
fsChangeSlide(fsid);
}
function frontpageSlideshow() {
fsinterval = window.setInterval(‘fsDoSlide()’,5000);
}
/* ]]> */
</script>
<!– /added by plugin FrontpageSlideshow –>
Anything wrong here?
Michael
nothing wrong I had a look on your website : the slider is not inserted, the begining and ending comments are inserted but not the slider :
<div class="postContent">
<!-- Frontpage Slideshow begin -->
<!-- Frontpage Slideshow end -->
<p>The Parish of Osmington consists of
All this because there are no posts into the category you specified into the plugin admin page… no posts found : no slider. that’s all.
In some word : change the category into the admin page to a category that contains some posts.
Thanks Jeff. I was advised to make the posts containing the pictures private as I didn’t want them to show up on the postings. As soon as I made them public, hey presto!
Thanks for our help and a nice plugin.