Jump to content
xt:Commerce Community Forum

Sortierung nach Datum


Recommended Posts

ich wollte fragen ob es möglich ist auch die normalen kategorien nach einstelldatum zu sortieren? als artikel sortierung ist ja nur artikelname, preis, reihung, gewicht und bestellte artikel möglich. da ja die new products.php bereits nach datum sortiert ist, kann es ja nich schwer sein die selbe sortierung auch für normale kategorien als option hinzuzufügen.

leider sind meine php kenntnisse sehr begrenzt :(

weiss einer wie ich das hinbekomme???

mfg Otsche

Link to comment
Share on other sites

Hallo!

Suche mal in der admin/includes/modules/new_category.php nach folgendem Code:

<?php
$order_array='';
$order_array=array(array('id' => 'p.products_price','text'=>TXT_PRICES),
array('id' => 'pd.products_name','text'=>TXT_NAME),
array('id' => 'p.products_ordered','text'=>TXT_ORDERED),
array('id' => 'p.products_sort','text'=>TXT_SORT),
array('id' => 'p.products_weight','text'=>TXT_WEIGHT),
array('id' => 'p.products_quantity','text'=>TXT_QTY));
$default_value='pd.products_name';
?>[/php]

und ersetze ihn gegen diesen:

[php]<?php
$order_array='';
$order_array=array(array('id' => 'p.products_price','text'=>TXT_PRICES),
array('id' => 'pd.products_name','text'=>TXT_NAME),
array('id' => 'p.products_date_added','text'=>TXT_DATE),
array('id' => 'p.products_ordered','text'=>TXT_ORDERED),
array('id' => 'p.products_sort','text'=>TXT_SORT),
array('id' => 'p.products_weight','text'=>TXT_WEIGHT),
array('id' => 'p.products_quantity','text'=>TXT_QTY));
$default_value='pd.products_name';
?>

Anschließend noch in der lang/SPRACHE/admin/categories.php noch die Sprachkonstante definieren. Dazu folgende Zeile suchen:

define('TXT_QTY','Auf Lager');

und danach folgendes einfügen:

define('TXT_DATE','Einstelldatum');

Diesen Schritt für jede installierte Sprache ausführen. Das war`s schon. :D

MfG Hetfield :cool:

Link to comment
Share on other sites

  • 2 months later...
  • 6 months later...
  • 2 months later...
  • 4 weeks later...
  • 3 months later...

Archived

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

×
  • Create New...