Jump to content
xt:Commerce Community Forum

Freitextmodul anpassen


Icniv

Recommended Posts

Hallo,

ich hab mir das Bui Hinsche Freitextmodul installiert. Soweit auch alles verständlich. Aber wie bringe ich dem bei, das er bei einer Radiobutton Auswahlliste einen Wert entweder voreinstellt oder aber die Auswahl zur Pflicht erklärt?

Ich hoffe mir kann da jemand helfen.

Gruß

Peer

Link to comment
Share on other sites

Hi,

also ich habe einen Zähler eingebaut, der den ersten Radio-Button als Vorauswahl nimmt. Die Seite ./templates/mein-huebsches-template/plugins/xt_product_options/options/items/xt_product_options_radio.html sieht dann modifiziert so aus:

{if $options!=''}
{assign var=zaehler value=0}
{foreach name=outer item=options_data from=$options}
{counter print=false assign=zaehler}
<tr class="{cycle name="ovcycle" values="contentrow1,contentrow2"}">
<td width="30%" align="left" class="productOptionsText">{$options_data.option_value_name}
{if $options_data.option_price_tax != "0"}
<p class="productOptionsPrice">({$options_data.option_p_prefix}{$options_data.option_price_tax|string_format:"%.2f"|regex_replace:"/\./":","} EUR)</p></td>
{/if}
<td width="25%" align="left">{if $zaehler =="1"}
{$options_data.field|regex_replace:"/radio\"/":"radio\" checked"}
{else}
{$options_data.field}
{/if}
{if $options_data.option_value_image!=''}
<a class="thickbox" href="{img img=$options_data.option_value_image type=m_popup path_only=true}">
{img img=$options_data.option_value_image type=m_thumb alt=$options_data.option_value_name}
</a>
{/if}
</td>
<td width="45%" align="left">{$options_data.option_value_desc}</td>
</tr>

{/foreach}

{/if}
[/PHP]

Da ist aber noch mehr drin sehe ich gerade, z.B. die Bilder der Optionen sowie ein bisschen 'Formatierungs-Pimping'. Ist aber nicht auf meinem Mist gewachsen, habe ich auch nur aus verschienden Stellen des Forums zusammengekratzt.:-)

Hoffe es hilft!

Gruß, Uwe

Link to comment
Share on other sites

Archived

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

×
  • Create New...