- Автор темы
- #1
копируем файл \index.php
копию переименовываем в all_offers.php
заменил в нем
на
Создал файл \templates\frontend\tmp*\all_offers.tpl.html
в фаиле
\languages\russian.php
добавляем
Ссылка на эту страничку выглядит так
у меня работает
копию переименовываем в all_offers.php
заменил в нем
Код:
$smarty->assign("main_content_template", "home.tpl.html");
Код:
$smarty->assign("main_content_template", "all_offers.tpl.html");
Создал файл \templates\frontend\tmp*\all_offers.tpl.html
Код:
{* front-end homepage*}
{$smarty.const.STRING_OFFERS}
<center>
<table border=0 cellspacing=1 cellpadding=5>
{section name=i loop=$special_offers}
{if $smarty.section.i.index is div by 2}<tr>{/if}
<td valign=top>
<table border=0 width=100% cellpadding=0 cellspacing=1>
<tr><td>
<table border=0 width=100%>
<tr>
<td colspan=2 align=center><a href="index.php?productID={$special_offers[i][0]}"><img src="products_pictures/{$special_offers[i][2]}" border=0></a></td>
</tr>
<tr>
<td align=center><a href="index.php?productID={$special_offers[i][0]}">{$special_offers[i][1]}</a></td>
<td align=right class="price"><b>{$special_offers[i][3]}</b></td>
</tr>
</table>
</td></tr>
</table>
</td>
{if ($smarty.section.i.index+1) is div by 2}</tr>{/if}
{/section}
</table>
</center>
в фаиле
\languages\russian.php
добавляем
Код:
define('STRING_OFFERS', '<b>Наши новинки.</b>');
Ссылка на эту страничку выглядит так
Код:
<a href="/all_offers.php">Все новые предложения</a>
у меня работает