
Any of known problems are listed in this topic, i think reading throught the topic will lead you to solution, or provied correct link.
Code: Select all
<!-- start infoBlock -->{if $contentnews == "+"}
<div class="infoBlockWrapper">
<div class="infoBlock">
{news summarytemplate='newsFrontpage'}
<!-- end infoBlock -->
</div>
</div>{/if}
Many thanks!uniqu3 wrote:@bara77
search for this part in BizBuzz Template:Now add parameter for example showing three articles number="3" in the news call.Code: Select all
<!-- start infoBlock -->{if $contentnews == "+"} <div class="infoBlockWrapper"> <div class="infoBlock"> {news summarytemplate='newsFrontpage'} <!-- end infoBlock --> </div> </div>{/if}
@astapul
to add sitemap you have to call {site_mapper} tag in the footer part, as i don't know where excatly you want to show it i can't give you any more help, but you will have to style it, you could use the "News" list style to show your sitemap.
Code: Select all
<div class="infoBlockGroup">{if $footersecond == "+"}
<h3>Where can you find me?</h3>
<div class="infoBlockGroupInner">
<p>My name is <a href="http://www.i-arts.eu">Goran Ilic</a> and i am a Freelance Designer.<br />You can contact me through the Form on the right.
</p>
<ul class="list-social">
<li>
<a target="_blank" title="connect with me on Twitter, page will open in new a window" href="http://www.twitter.com/#">
<img src="/1.9.4/uploads/BizBuzzV2/twitter.png" alt="Twitter" /> </a>
</li>
<li>
<a target="_blank" title="connect with me on Facebook, page will open in new a window" href="http://www.facebook.com/#">
<img src="/1.9.4/uploads/BizBuzzV2/facebook.png" alt="Facebook" /></a>
</li>
<li>
<a target="_blank" title="connect with me on Friendfeed, page will open in new a window" href="http://friendfeed.com/#">
<img src="/1.9.4/uploads/BizBuzzV2/friendfeed.png" alt="FriendFeed" /></a>
</li>
<li>
<a target="_blank" title="connect with me on Google Buzz, page will open in new a window" href="http://www.google.com/profiles/#">
<img src="/1.9.4/uploads/BizBuzzV2/google.png" alt="Google" /></a>
</li>
<li>
<a target="_blank" title="my photo stream on Flickr, page will open in new window" href="http://www.flickr.com/photos/#">
<img src="/1.9.4/uploads/BizBuzzV2/flickr.png" alt="Flickr" /></a>
</li>
</ul>
</div>
{else}
<h3>{$footersecondtitle}</h3>
<div class="infoBlockGroupInner">
{$footersecondcontent}
</div>{/if}
</div>
Code: Select all
<div class="infoBlockGroup">
<h3>Sitemap</h3>
<div class="infoBlockGroupInner">
{site_mapper}
</div>
</div>