Hallo!
Suche mal in der admin/includes/modules/new_category.php nach folgendem Code:
PHP-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';
?>
und ersetze ihn gegen diesen:
PHP-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_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:
PHP-Code:
define('TXT_QTY','Auf Lager');
und danach folgendes einfügen:
PHP-Code:
define('TXT_DATE','Einstelldatum');
Diesen Schritt für jede installierte Sprache ausführen. Das war`s schon.
MfG Hetfield