Dear
Please open file Index.php in templates/ja_helio folder, at about line 129, find following script:
<?php if ($this->countModules(‘user5’) && $ja_right) { ?>
<!– BEGIN: TOPSPOTLIGHT –>
<div id=”ja-topsl”>
<jdoc:include type=”modules” name=”user5″ style=”raw” />
</div>
<!– END: TOPSPOTLIGHT –>
<?php } ?>
With script above, you will see that slideshow only display when the right module is already exist.
You can change this script to:
<?php if ($this->countModules(‘user5’) ) { ?>
<!– BEGIN: TOPSPOTLIGHT –>
<div id=”ja-topsl”>
<jdoc:include type=”modules” name=”user5″ style=”raw” />
</div>
<!– END: TOPSPOTLIGHT –>
<?php } ?>
Hope it helps.