2014-05-14, 06:59:42
@xxdex:
breadcrumbs vs. URL: use %parents%/%slug% as custom permalink structure.
language specific URL: no, this is not possible.
sort languages: not possible, but you can patch plugins/i18n_base/pages.php: replace (line 69)
with
to reverse the sorting order (with the exception of the default language, which is always first).
breadcrumbs vs. URL: use %parents%/%slug% as custom permalink structure.
language specific URL: no, this is not possible.
sort languages: not possible, but you can patch plugins/i18n_base/pages.php: replace (line 69)
Code:
sort($languages);
Code:
rsort($languages);