69
« on: August 15, 2017, 07:28:40 PM »
Hello,
Now I understand. The sorting you need is not provided and must be adjusted.
But it is possible. You want to sort by Artline.
I look again.
nobby
EDIT:
search in: /lang/english/admin.php
/*-- Setting-Group 3 --*/
$setting_group[3]="Image settings";
$setting['image_order'] = "Sort images by";
$image_order_optionlist = array(
"image_name" => "Name",
"image_date" => "Date",
"image_downloads" => "Downloads",
"image_votes" => "Votes",
"image_rating" => "Rating",
"image_hits" => "Hits"
);
replace by
/*-- Setting-Group 3 --*/
$setting_group[3]="Image settings";
$setting['image_order'] = "Sort images by";
$image_order_optionlist = array(
"image_name" => "Name",
"image_date" => "Date",
"image_downloads" => "Downloads",
"image_votes" => "Votes",
"image_rating" => "Rating",
"image_hits" => "Hits",
"image_id" => "ID-Nummer"
);
You can also replace "image_id" => "ID number" with: "image_media_file" => "File name"