← Back to News & Newsletter Support
chris10207
the sorting is not happening in the component newsPosts
.
The issue is in the method scopeListFrontEnd
in the model Post.php
instead of this
foreach ($sort as $_sort) {
if (in_array($_sort, array_keys(self::$allowedSorting))) {
it should be this
foreach ($sort as $_sort) {
if (in_array($_sort, self::$allowedSorting)) {
Last updated
1-1 of 1