Article Tags in Acymailing Newsletter - Joomla! Forum - community, help and support
i using acymailing send out newsletters subscribers , wanting include joomla articles including tags.
the standard newsletter view in acymailing has options article title, intro text or full article. article tags not included in either.
i have created custom view newsletter content in /media/com_acymailing/plugins/tagcontent.php
and included code tags article , render them in view. see below, nothing displayed.
any ideas going wrong?
the standard newsletter view in acymailing has options article title, intro text or full article. article tags not included in either.
i have created custom view newsletter content in /media/com_acymailing/plugins/tagcontent.php
and included code tags article , render them in view. see below, nothing displayed.
code: select all
<div class="acymailing_content">
<a href="<?php echo $link; ?>" name="content-<?php echo $article->id; ?>" target="_blank" >
<h2 class="acymailing_title"><?php echo $article->title; ?></h2></a>
<?php
$article->tags = new jhelpertags;
$tagsdata = $article->tags->getitemtags('com_content.article' , $article->id);
$article->taglayout = new jlayoutfile('joomla.content.tags');
echo $article->render($tagsdata);
?>
</div>
any ideas going wrong?
Comments
Post a Comment