Dear Buni Bunie,
I think that you can still use the override of sj carousel module in the sj plus template if you want.
+ remain the name of sj carousel module (mod_sj_carousel) in "templates\sj_plus\html" folder.
+ go to "templates\sj_plus\html\mod_sj_carousel\default.php", finding:
<div class="carousel-caption">
<h4>
<a href="<?php echo $item->link ?>" <?php echo SjCarouselHelper::parseTarget($options->item_link_target);?>>
<?php echo $item->title;?>
</a>
</h4>
<p><?php echo $item->displayIntrotext;?></p>
</div>
=>
<?php if(($options->item_title_display == 1) || ($options->show_introtext == 1)){?>
<div class="carousel-caption">
<?php if($options->item_title_display == 1){?>
<h4>
<a href="<?php echo $item->link ?>" <?php echo SjCarouselHelper::parseTarget($options->item_link_target);?>>
<?php echo $item->title;?>
</a>
</h4>
<?php }?>
<?php if($options->show_introtext == 1){?>
<p><?php echo $item->displayIntrotext;?></p>
<?php }?>
</div>
<?php }?>
Thanks