Hi pmstudios,
As I have a multi-lingual cart and I dont want some pages to appear in the pages list I've a the following twist to it
Code:
<table width="100%">
<tr>
<td align="center"><h1>{$lng.lbl_tab_how_to}</h1></td>
</tr>
<tr>
<td>{$lng.lbl_how_to_text}
</td>
</tr>
</table>
{if $store_language eq "NL"}
{capture name=dialog}
{section name=pg loop=$pages_menu}
{if $pages_menu[pg].pageid ne "1"}
{$pages_menu[pg].title}
{/if}
{/section}
{/capture}
{include file="dialog.tpl" title=$lng.lbl_tab_how_to content=$smarty.capture.dialog extra="width=100%"}
{elseif $store_language eq "US"}
{capture name=dialog}
{section name=pg loop=$pages_menu}
{if $pages_menu[pg].pageid ne "1"}
{$pages_menu[pg].title}
{/if}
{/section}
{/capture}
{include file="dialog.tpl" title=$lng.lbl_tab_how_to content=$smarty.capture.dialog extra="width=100%"}
{/if}