Jump to content

Как отобразить статью на статической странице?


Recommended Posts

Собсно сабж. Подскажите как реализовать отображение статьи на статической странице?
Есть код:

{if $articles}
{if $article->in_head == 1}
<div id="phone">
<!-- Банер /-->
{foreach name=articles from=$articles item=article}
{if $smarty.foreach.articles.iteration <= $smarty.foreach.articles.total/2+0.7}
{$article->annotation}
<a tooltip="article" article_id="{$article->article_id}" href="articles/{$article->url}">Подробнее</a>
{/if}
{/foreach}
<!-- Банер /-->
</div>
{/if}
{/if}

Который помещен в шапку в файле index.tpl, но при переходе на страницу скажем "Контакты" или "Способы доставки" статья перестает отображаться.

Рылся рылся и нашел следующий код:

// Статьи (несколько последних)
$query = sql_placeholder("SELECT * FROM articles WHERE enabled=1 ORDER BY order_num DESC LIMIT ?", $this->articles_count);
$this->db->query($query);
$articles = $this->db->results();

Добавил его в StaticPage.class.php но увы ничего не поменялось.
Буду благодарен за помощь!

Link to post
Share on other sites

Тему в топку, решилось боковым меню из версии 1.1.
Сделал так сказать систему баннеров. Кому нужно контакты в личке.


P.S. #gena это не то что нужно да и уже не по надобности...
Но все-же спасибо, что отписался=)

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...