<em>@ealexey 459102 wrote:</em><blockquote>Hello,
If Articles displayed via Joomla Advanced Custom Module the code {youtube}YOUTUBE-CODE{/youtube} displayed in frontend instead the Video.
Thanks</blockquote>
Hello ealexey,
The Problem is with this version from the Problem, but i found a solutions.
[PHP]go in this file: template/ja_teline_v/html/layouts/jooma/content/item/default.php and goh to this Script
<section class=”article-content” itemprop=”articleBody”>
<?php echo JLayoutHelper::render(‘joomla.content.info_block.topic’, array(‘item’ => $item)); ?>
<?php echo $item->fulltext; ?>
<?php if ($params->get(‘show_tags’, 1) && !empty($item->tags)) : ?>
<?php echo JLayoutHelper::render(‘joomla.content.tags’, $item->tags->itemTags); ?>
<?php endif; ?>
</section>
and chance to this:
<section class=”article-content” itemprop=”articleBody”>
<?php echo JLayoutHelper::render(‘joomla.content.info_block.topic’, array(‘item’ => $item)); ?>
<?php echo $item->text; ?>
<?php if ($params->get(‘show_tags’, 1) && !empty($item->tags)) : ?>
<?php echo JLayoutHelper::render(‘joomla.content.tags’, $item->tags->itemTags); ?>
<?php endif; ?>
</section>
[/PHP]
If not working, then you say me this and i help you.