simon.goetz Posted June 26, 2009 Report Share Posted June 26, 2009 Ich würde gerne im Adminbereich in der Artikelübersicht (Datei categories.php und folgeseiten) die Artikelnummer als Spalte mit anzeigen. Kann mir da jemand helfen? Danke schon einmal! Link to comment Share on other sites More sharing options...
bri Posted June 26, 2009 Report Share Posted June 26, 2009 Hallo Simon, versuch mal folgendes in der Datei admin/includes/modules/categories_view.php (vorher sichern!): (ca. Zeile 52) vor case 'price' : einfügen: case 'model-desc' : $catsort = 'c.sort_order DESC'; $prodsort = 'p.products_model DESC'; break; case 'model' : $catsort = 'c.sort_order ASC'; //default $prodsort = 'p.products_model ASC'; break; Hinter <td class="dataTableHeadingContent" align="center" width="7%"> <?php echo TABLE_HEADING_SORT.xtc_sorting(FILENAME_CATEGORIES,'sort'); ?> </td> folgendes einfügen: <td class="dataTableHeadingContent" align="center" width="10%"> <?php echo TABLE_HEADING_MODEL.xtc_sorting(FILENAME_CATEGORIES,'model'); ?> </td> Hinter } else { echo $products['products_sort']; } ?> </td> folgendes einfügen: <td class="categories_view_data" style="text-align: left; padding-left: 8px;"> <?php echo '<a href="' . xtc_href_link(FILENAME_CATEGORIES, xtc_get_all_get_params(array('cPath', 'action', 'pID', 'cID')) . 'cPath=' . $cPath . '&pID=' . $products['products_id'] ) . '">' . $products['products_model']; ?></a> </td> Dann noch in lang/german/admin/categories.php die Definition define('TABLE_HEADING_MODEL', 'Artikelnr.'); einfügen. Und wenn ich nichts vergessen habe, sollte es klappen ;-)) Herzliche Grüße Inge Link to comment Share on other sites More sharing options...
simon.goetz Posted June 26, 2009 Author Report Share Posted June 26, 2009 Super, DANKE! Nur eine Kleinigkeit musste man noch ergänzen: In der Sektion nach //get products data muss man die Variable p.products_model, ergänzen. VG Simon Link to comment Share on other sites More sharing options...
uli1964 Posted October 14, 2010 Report Share Posted October 14, 2010 Ich habe das so gemacht. Eine neue Spalte "Artikelnummer" wird dargestellt, allerdings keine Daten (Artikelnummern). Version 3.04 SP1 Was habe ich da Falsch gemacht? Ich habe es nochmal kontrolliert; ich finde keinen Fehler bei der Eingabe. Link to comment Share on other sites More sharing options...
uli1964 Posted October 14, 2010 Report Share Posted October 14, 2010 Ich habe übersehen, dass ich bei //get products data p.products_model, 2x einsetzen muss Jetzt gehts wunderbar Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.