Hi @fanzb,
Your problem was bug of ja contentslider, i created new issue on the bugs tracking page. To resolve this problem please do as following:
– Open “helper.php” file in folder “modules/ja_contentslider/”
– Edit “renderImage()” function, change line code
function renderImage( $title, $link, $image, $params, $width = 0, $height = 0, $attrs='', $returnURL=false ) {
...
// clean up globals
return $image;
}
to
function renderImage( $title, $link, $image, $params, $width = 0, $height = 0, $attrs='', $returnURL=false ) {
.....
$image = '<a href="'.$link.'" title="" class="ja-image">'.$image.'</a>';
// clean up globals
return $image;
}