Jump to content
xt:Commerce Community Forum

table_listing.html bearbeiten


patbo

Recommended Posts

jo, so hab ichs im moment auch gel?st, allerdings ist das nicht ganz so ?bersichtlich wegen den fehlenden trenn?berschriften. gibts denn eine m?glichkeit, eine abfrage oder ?hnliches einzubauen, welche nach 3 artikelmerkmalen eine trennlinie oder ?hnliches einf?gt? sollte doch m?glich sein, oder?

danke

Link to comment
Share on other sites

Ja ist m?glich

Du musst die table_listing.html

in

templates/aktuelles_template/module/product_options

entsprechend bearbeiten.

PS:

Es wird dann aber immer nach 3 Artikelmerkmalen eine Trennlinie eingebaut.

Gruss

Hanspeter

Link to comment
Share on other sites

{if $options!=''}

<table width="100%" border="0" cellpadding="0" cellspacing="0">

{foreach name=outer item=options_data from=$options}

<tr>

<td style="border-bottom: 1px solid;" colspan="4">{$options_data.NAME}:</td>

</tr>

{php}

$count=0;

{/php}

{foreach key=key_data item=item_data from=$options_data.DATA}

<tr class="{cycle values="tableListingI,tableListingII"}">

<td>

{php}

$count++;

if ($count==1) {

{/php}

<input type="radio" name="id[{$options_data.ID}]" value="{$item_data.ID}" checked="checked" />

{php}

} else {

{/php}

<input type="radio" name="id[{$options_data.ID}]" value="{$item_data.ID}" />

{php}

}

{/php} </td>

<td>{$item_data.TEXT}

</ td>

<td></td>

<td align="right">{if $item_data.PRICE}{$item_data.PRICE}{/if}</td>

</tr>

{/foreach}

{/foreach}

</table>

{/if}

hier mal das file...

Link to comment
Share on other sites

Etwa so

?nderungen rot und blau

{if $options!=''}

<table width="100%" border="0" cellpadding="0" cellspacing="0">

{foreach name=outer item=options_data from=$options}

<tr>

<td style="border-bottom: 1px solid;" colspan="4">{$options_data.NAME}:</td>

</tr>

{php}

$count=0;

{/php}

{foreach key=key_data item=item_data from=$options_data.DATA}

<tr class="{cycle values="tableListingI,tableListingII"}">

<td>

{php}

$count++;

if ($count==1) {

{/php}

<input type="radio" name="id[{$options_data.ID}]" value="{$item_data.ID}" checked="checked" />

{php}

} else {

{/php}

<input type="radio" name="id[{$options_data.ID}]" value="{$item_data.ID}" />

{php}

}

{/php} </td>

<td>{$item_data.TEXT}

</ td>

<td></td>

<td align="right">{if $item_data.PRICE}{$item_data.PRICE}{/if}</td>

</tr>

{php}

if ($count%3==0) {

{/php}

<tr bgcolor="ffffff">

<td width="100%" colspan="4"><hr></td>

</tr>

{php}

}

{/php}

{/foreach}

{/foreach}

</table>

{/if}

Alternative (keine Linie nur Abstand)

<td width="100%" colspan="4"></td>

Ordner templates_c leeren, nicht vergessen!

Gruss

Hanspeter

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...