Рус44
Создатель
- Регистрация
- 11 Фев 2009
- Сообщения
- 14
- Реакции
- 1
- Автор темы
- #1
Всем привет!
Хотел сделать модуль новости для версии 1,22 по странично.
Но ничего не получается.
В inclubes/news.php
В шаблон добавил
/templates/frontend/tmpl1/news.tpl.html
Создал шаблон /templates/frontend/tmpl1/show_newsID.tpl.html
Выдает все равно все новости.
Может кто нибудь подскажет что делать?
Хотел сделать модуль новости для версии 1,22 по странично.
Но ничего не получается.
В inclubes/news.php
PHP:
<?php
/*****************************************************************************
* *
* Shop-Script PREMIUM *
* Copyright (c) 2005 WebAsyst LLC. All rights reserved. *
* *
*****************************************************************************/
$news_array = newsGetNewsToCustomer();
$smarty->assign( "news_array", $news_array );
if ( isset($_POST["subscribe"]) )
{
$error = subscrVerifyEmailAddress($_POST["email"]);
if ( $error == "" )
{
$smarty->assign( "subscribe", 1 );
subscrAddUnRegisteredCustomerEmail( $_POST["email"] );
}
else
$smarty->assign( "error_message", $error );
}
if ( isset($_POST["email"]) )
$smarty->assign( "email_to_subscribe", $_POST["email"] );
else
$smarty->assign( "email_to_subscribe", "Email" );
if ( isset($news) && !isset($ID))
{
$smarty->assign( "main_content_template", "show_news.tpl.html" );
unset($news);
}
Добавил это
else if (isset($news) && $ID<4)
{ $smarty->assign("nID","$ID");
$smarty->assign( "main_content_template", "show_newsID.tpl.html" );
}
?>
/templates/frontend/tmpl1/news.tpl.html
PHP:
{section name=i loop=$news_array}
<b><font class=light color="#FFFFFF">
<span style="background-color: #3C5267">{$news_array[i].add_date}</span></font></b>
<u>
<font class=middle color="#C0C0C0"><a href="index.php?news=yes&ID={$news_array[i].NID}">{$news_array[i].title}</a></font></u>
<br><br>
{/section}
PHP:
{section name=i loop=$news_array}
<div class="box_wr" style="margin-bottom:15px;">{$news_array[i].add_date}</div>
<b>{$news_array[i].title}</b><br>
{if $news_array[i].picture ne ""}
<img src='products_pictures/{$news_array[i].picture}'
{else} {/if}
{$news_array[i].textToPublication}
{/section}
Может кто нибудь подскажет что делать?