Hey people i need some help,
How can i make a Recent Site News with Title and Intro text?
Like this:
[url]https://lh3.googleusercontent.com/_McWLuvaRgVo/TZekeM37VdI/AAAAAAAAAH0/vP3ejxG25j0/SiteNews-CounterText.gif[/url]
Best Regards,
Hoko
Use the News And Email addon and simply setup a block for the most recent news.
This is the solution!
Site news with a slideshow with Title and intro text.
Just replace this file.
/skins/yourtemplate/customer/addons/news_and_emails/blocks/news.tpl
```php
{* $Id: news.tpl 11437 2010-12-21 13:39:28Z 2tl $ }
{* block-description:site_news **}
{if $news}
-
{capture name="tabsbox"}
{$news.news}
{$news.description|unescape|strip_tags|truncate:280:"..."}
{if $news.description|strlen > 280}
{$lang.more_w_ellipsis}
{/if}
{hook name="news:view"}
{/hook}
{/capture}
{include file="common_templates/tabsbox.tpl" content=$smarty.capture.tabsbox active_tab=$smarty.request.selected_section}
{foreach from=$items item="news" name="site_news"}
{/foreach}
{/if}
{capture name="mainbox_title"}{$lang.site_news}{/capture}
```