das ist das orginal und ich nutze yaml- xtc 1.6
HTML Code:
{config_load file="$language/lang_$language.conf" section="wishlist"}
{if $deny neq 'true'}
<table width="100%" border="0" cellpadding="4" cellspacing="0">
<tr>
<td class="infoBoxHeading_right">{#heading_wishlist#}</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="5" cellspacing="0">
<tr>
<td class="infoBox_right" align="left"> {if $IS_MERCHANT=='true'}
{$BOX_CONTENT} <a href="{$NEW_WISHLIST}">{#create_new#}</a>
<hr />
{/if}
<table width="100%" border="0" cellspacing="0" cellpadding="0">
{if $empty=='false'}
{foreach name=aussen item=products_data from=$wishlist}
<tr>
<td class="main"><a href="{$products_data.LINK}">{$products_data.NAME|truncate:15:"...":true}</a></td>
</tr>
{/foreach}
<tr>
<td colspan="2"> </td>
</tr>
{else}
<tr>
<td class="boxText">{#text_empty_wishlist#}</td>
</tr>
{/if}
<tr>
<td class="boxText" align="right"><a href="{$LINK_WISHLIST}">{#text_to_wishlist#}</a></td>
</tr>
</table></td>
</tr>
</table>
{/if}
HTML Code:
{config_load file="$language/lang_$language.conf" section="wishlist"}
<div class="boxInfoRS" id="box_currencies">
<h4>{#heading_wishlist#}</h4>
{if $deny neq 'true'}
<div class="boxInfoBodyRS">{if $IS_MERCHANT=='true'}
{$BOX_CONTENT} <a href="{$NEW_WISHLIST}">{#create_new#}</a>
<hr />
{/if}
{if $empty=='false'}
{foreach name=aussen item=products_data from=$wishlist}
<tr>
<td class="main"><a href="{$products_data.LINK}">{$products_data.NAME|truncate:15:"...":true}</a></td>
</tr>
{/foreach}
<tr>
<td colspan="2"> </td>
</tr>
{else}
<tr>
<td class="boxText">{#text_empty_wishlist#}</td>
</tr>
{/if}
<tr>
<td class="boxText" align="right"><a href="{$LINK_WISHLIST}">{#text_to_wishlist#}</a></td>
</tr>
</div>
</div>
{/if}
ich bekomme aber die tabellen nicht weg.