View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002202 | OXID eShop (all versions) | 1.01. Products (product, categories, manufacturer, promotions etc.) | public | 2010-11-09 13:29 | 2014-04-22 08:31 |
Reporter | klaus | Assigned To | |||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 4.4.3 revision 30016 | ||||
Fixed in Version | 4.4.5 revision 31315 | ||||
Summary | 0002202: Category Sorting in language a affects category sorting in language b | ||||
Description | I use sorting to get an alphabetic order into the categories. But the alpabetic order in English and German is different. E.G.: I create "Adhesives Cat 1000" "Books Cat 2000" ... these categories' sort will apply to the German categories, too, which puts "Klebemittel" before "Buecher". Correcting the German sorting will affect the English sorting and leave incorrect alphabetic order in English. | ||||
Tags | Category | ||||
Theme | Both | ||||
Browser | All | ||||
PHP Version | any | ||||
Database Version | any | ||||
|
Fixed "order by" field, now its depends on selected language. |
|
reopened this bug, because it is reproduceable in the latest version. To reproduce it: 1. goto admin 2. administer products 3. categories 4. add category "A" add write "1" into the sort field. 5. add category "B" add write "2" into the sort field. 6. add category "C" add write "3" into the sort field. 7. Copy added categories into language english 8. Change the sorting of the categories while english is activated. 9. switch back to german and have a look at the sort fields. It is exactly what you changed at the english language and not as it was in german. |
|
categories are loaded with sorting: "oxsort, oxtitle", also oxsort field do not depend on language; its mean that if you enter some sorting it will be the same in all languages; if oxsort field is the same then will be ordered by title (its depend on language). to have possibility sort in different languages independent i will add to feature request list |
|
Problem looks solved to me: All categories you want to be sorted in alphabetical order in German as well as in English have to have the same order number. e.g.: You have got the categories "Workmat" - German: "Arbeitsmatte" and "Batteries" - German: "Batterien". To sort in alphabetical order, just use the same order number, e.g.: "1000" Because the order number is the same, Oxid will now sort by category Name. This will be correct in both English and German language. English will be "Batteries" "Workmat" German will be "Arbeitsmatte" "Batterien" Now, if you want something like "Special Offers" ( German "Sonderangebote" ) in first place, make it a lower order number, e.g. "1" Now you will get the following order in English: "Special Offers" "Batteries" "Workmat" and in German: "Sonderangebote" "Arbeitsmatte" "Batterien" |