Hallo!
In meinem Shop habe ich die Kategorie "Angebote" in dem ich, wie der Name schon vermuten lässt alle Angebote meines Shops zusammenfasse.
Damit das ganze sich auch optisch von meinen normalen Artikeln unterscheidet, habe ich also ein HTML-File erstellt mit dem Namen angebote.html
Ich möchte allerdings das diese Vorlage auch auf der Startseite benutzt wird (sprich: Die Angebote sollen beim öffnen der Startseite angezeigt werden)
Wie schaffe ich das? Habe bereits versucht im Content Manager meinen Quellcode der angebote.html einzufügen was mir allerdings nicht gelungen ist.
Vielleicht liegts ja auch am Quellcode der angebote.html?
Hier der Quellcode
Zitat:
<table width="100%" border="0" cellpadding="0" cellspacing="0" background="templates/xtc_template2/img/images/b.jpg">
<tr>
<td>
<div align="center"><img src="templates/xtc_template2/img/images/transparent_line.png" alt="" width="619" height="11" hspace="0" border="0"/>
<div align="center"><img src="templates/xtc_template2/img/images/solala.png" alt="" width="619" height="334" hspace="0" border="0" title="solalabild" /><br>
<img src="templates/xtc_template2/img/images/transparent_line.png" alt="" width="619" height="11" hspace="0" border="0"/><br>
<table width="618" border="0" cellspacing="0" cellpadding="0">
<tr>
{php}
{foreach name=aussen item=module_data from=$module_content}
{php} $col++;
{/php}
<td valign="top" class="main">
<div align="left">
<table width="300" height="367" border="0" cellpadding="0" cellspacing="0" background="{$tpl_path}img/images/Artikel_back12.png" style="">
<tr>
<td height="19" colspan="3"> <div align="right"><span class="preis_listing"><strong><font color="#FFFFFF">{$module_data.PRODUCTS_PRICE}</font></strong></span>
</div></td>
</tr>
<tr>
<td height="19" colspan="3"> <div align="right"> </div></td>
</tr>
<tr>
<td height="208" colspan="3"> <div align="center"><a href="{$module_data.PRODUCTS_LINK}"><img src="{$module_data.PRODUCTS_IMAGE}" width="212" height="208" border="0"></a></div></td>
</tr>
<tr>
<td width="20" class="main"></td>
<td width="260" class="main"><div align="left"><font color="#FFFFFF"><a href="{$module_data.PRODUCTS_LINK}"><strong>{$modu le_data.PRODUCTS_NAME}</strong></a><br>
{$module_data.PRODUCTS_DESCRIPTION}</font></div></td>
<td width="20" class="main"></td>
</tr>
<tr> </tr>
</table>
</div></td>
{php}
if ($col>=2) {
$col=0;
echo '</tr><tr>';
}
{/php}
{/foreach}
</tr>
</table>
</div></td>
</tr>
</table>
<!-- <br>-->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#FFFFFF">{$NAVIGATION}</td>
</tr>
</table>
{if $result=='false'}
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="border: 1px solid; border-color: #ff0000;" bgcolor="#FFCCCC"><div align="center"><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif">{#text_noproduct#}</font></strong></div></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="right" bgcolor="353535"><br>
{$BUTTON}</td>
</tr>
</table>
{/if}
|