patbo Posted June 30, 2005 Report Share Posted June 30, 2005 hoi, hab mehrere artikelattribute, m?chte aber dass der kunde ingesamt nur einen punkt ausw?hlen kann. muss man doch bestimmt einfach was in der table_listing.html ver?ndern? beispiel (wie es nicht sein soll) danke Link to comment Share on other sites More sharing options...
nom Posted July 1, 2005 Report Share Posted July 1, 2005 Das geht auch, wenn du das Ganze anders anlegst. Papier [ ] Aquarell 40x26,67 [ ] Aquarell 60x40 [ ] Bl?tten 40x26,67 [ ] Bl?tten 60x40 Jetzt hat man nur eine Auswahl. Link to comment Share on other sites More sharing options...
patbo Posted July 2, 2005 Author Report Share Posted July 2, 2005 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 More sharing options...
hp Posted July 2, 2005 Report Share Posted July 2, 2005 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 More sharing options...
patbo Posted July 4, 2005 Author Report Share Posted July 4, 2005 ok... in der datei war ich auch schon... nur welchen code muss ich einf?gen? Link to comment Share on other sites More sharing options...
patbo Posted July 4, 2005 Author Report Share Posted July 4, 2005 {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 More sharing options...
hp Posted July 4, 2005 Report Share Posted July 4, 2005 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 More sharing options...
patbo Posted July 6, 2005 Author Report Share Posted July 6, 2005 vielen dank f?r deine hilfe, sieht gut aus Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.