Jump to content
xt:Commerce Community Forum

Anzeige der Produktatrribute


ronnyberger

Recommended Posts

Das habe ich ja hinbekommen.

Jetzt werden 2 Dropdowns nebeneinander angezeigt.

Wie kann ich nun genau bestimmen, welches Dropdown wo sein soll.

Möchte beispielweise Farbe und Zylinder in der ersten Zeile, und

Addition etc in der zweiten!

Es scheint so, als sortiert er diese nach Alphabet.

Kann ich das irgendwie beeinflussen???

Link to comment
Share on other sites

  • 1 month later...

Hier die Antwort aus einem anderen thread (oder wars auch deiner?)

in dieser datei:

includes/modules/product_attributes.php

in dieser zeile:

if ($product->getAttributesCount() > 0) {

$products_options_name_query = xtDBquery("select distinct popt.products_options_id, popt.products_options_name from ".TABLE_PRODUCTS_OPTIONS." popt, ".TABLE_PRODUCTS_ATTRIBUTES." patrib where patrib.products_id='".$product->data['products_id']."' and patrib.options_id = popt.products_options_id and popt.language_id = '".(int) $_SESSION['languages_id']."' order by popt.products_options_name");

änderst du:

order by popt.products_options_name ändern in

und zwar in:

order by popt.products_options_id

dann werden Sie nach der von dir im admin-bereich vergebenen id sortiert.

Link to comment
Share on other sites

Archived

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

×
  • Create New...