I tried to use JA tab plugin in my jreview theme, and all working great except one tab can not be shown for the below code. Why’s that?
<?php if($userReviewForm):?>
<!– USER REVIEW FORM –>
<?php echo $this->renderControllerView(‘reviews’,’create’,array(‘criteria’=>$listing[‘Criteria’]))?>
<?php endif;?>
<div id=”jr_user_reviews”><?php // div required to display post save messages – DO NOT REMOVE ?>
<?php if($listing[‘Review’][‘review_count’]>0):?>
<!– BEGIN USER REVIEWS –>
<?php echo $this->renderControllerView(‘reviews’,’reviews’,array(‘reviews’=>$reviews,’reviewType’=>’user’))?>
<!– END USER REVIEWS –>
<?php endif;?>
</div>
<div class=”clr”> </div>
<!– END USER REVIEWS–>