i am trying to put a description under the movies on my frontpage but i can get i to work hvat is wrong
the line i am using :
<?php if ($this->video['description'] != ''): ?> <div class="video-container">
<h2 class="description"><?php echo e($this->video['description'] ); ?></h2>
under the movie ther i playing it is working but wen i put the same line in her on the fronpage it is not working
foreach ($this->videos as $video): ?>
<?php echo e(VText::truncate_chars($video['title'], 50)); ?>
<?php if ($video['ext'] == 'mp4'): ?>
<?php if ($video['premium'] == '1'): ?>Premium<?php endif; ?>
<?php echo VDate::duration($video['duration']); ?>
<?php echo VDate::nice($video['add_time']); ?>
<?php echo $video['total_views'],' '; if ($video['total_views'] == '1'): echo __('view'); else: echo __('views'); endif; ?> <?php if ($this->video['description'] != ''): ?>
<div class="video-container">
<h2 class="description"><?php echo e($this->video['description'] ); ?></h2>
<div class="clear"></div>