PM Euro-Trading Posted October 16, 2007 Report Share Posted October 16, 2007 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 More sharing options...
PM Euro-Trading Posted October 19, 2007 Author Report Share Posted October 19, 2007 *nochmal hoffnungsvoll hochschieb* Link to comment Share on other sites More sharing options...
Hetfield Posted October 19, 2007 Report Share Posted October 19, 2007 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. MfG Hetfield Link to comment Share on other sites More sharing options...
PM Euro-Trading Posted October 22, 2007 Author Report Share Posted October 22, 2007 ach tausend dank hat super geklappt Link to comment Share on other sites More sharing options...
Grospolian Posted January 16, 2008 Report Share Posted January 16, 2008 Ja bei mir hats auch super funktioniert Danke, danke Link to comment Share on other sites More sharing options...
nldx Posted July 18, 2008 Report Share Posted July 18, 2008 Funktioniert sehr gut. Danke ! Link to comment Share on other sites More sharing options...
xtbb Posted September 19, 2008 Report Share Posted September 19, 2008 AT Hetfield danke, für Deine Hilfe - hättest Du jetzt noch eine kleine SQL-Anweisung parat, mit der man alle Kategorien auf "Einstelldatum/absteigend" setzen kann? Link to comment Share on other sites More sharing options...
Hetfield Posted September 20, 2008 Report Share Posted September 20, 2008 Klar habe ich das: UPDATE categories SET products_sorting = 'p.products_date_added', products_sorting2 = 'DESC'; [/PHP] MfG Hetfield [color=#000000][color=#0000BB][/color][color=#007700] [/color][/color] Link to comment Share on other sites More sharing options...
alex509 Posted October 16, 2008 Report Share Posted October 16, 2008 Klar habe ich das: UPDATE categories SET products_sorting = 'p.products_date_added', products_sorting2 = 'DESC'; [/PHP] MfG Hetfield [color=#000000][color=#0000BB][/color][color=#007700] [/color][/color] wo genau soll ich das einfügen Link to comment Share on other sites More sharing options...
snyware Posted January 30, 2009 Report Share Posted January 30, 2009 über phpmyAdmin, oben auf "SQL" , dann den Text ins Textfeld einfügen und OK klicken Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.