In Joomla 3.2.3 i can not make the article orders like in J 1.5.x , i want to make the frontpage article ordering like what i define at administrator area.
I try several ways and still do not have any success, 1 weeks already ... :(
The last i tried is this :
a) Content => Featured Article => (at top right) sort table by "Ordering Descending"
b) I moved the article in the order i want, then click at "Double arrow" to save it
c) Then i click at "Options" (right top), it will open the Global configuration -> Article page.
+) Then i click at "Category" => Choose Layout = Blog,
+) "Blog/Featured Layout" => Multi column Order = Across.
+) "Shared Option" => Category Order = No Order, Article Order = Ordering
Date for Ordering = published
Then clicked at "Save and Close"
d) I click at "Menu" => Main Menu => Home => layout
+) multi column order = across,
+) Category order = no order,
+) Article Order = featured article order
But at frontend, the article is not changed
it is still ordered by "Date descending"
What is wrong ?
Thanks
I have J! 3.3.1 and was experiencing the same issue.
Go into the menu manager. Open each of your menu items and in the "Layout" tab make the following changes:
Category Order - No Order (this is the real key to getting your articles ordered the way you want.
Article Order - Most Recent (or which ever way you want it ordered.
Date For Ordering - I use published but you can use whatever you want.
Do this for each of your menu items and it should fix the problem.
had the same problem. No need to code. Can be done in menus.
Article manager click on featured Articles on left hand side. Your Featured articles will appear and a column for ordering shows up. Order accordingly.
Go to the Menu Manager to the page you want the featured articles to appear. On the second tab is Layout. go down to Article Order and select "Featured Articles Order" from the drop down. Save and your articles will appear in the order you selected.
Joomla 3.3.6 here, I have the same problem, featured ordering always descending no matter what, I changed line 106 in components/com_content/helpers/query.php from:
$orderby = 'a.featured DESC, fp.ordering, ' . $queryDate . ' DESC ';
to:
$orderby = 'a.featured ASC, fp.ordering, ' . $queryDate . ' DESC ';
Now it works as it should.
I had the same problem with ordering of featured articles for the home page. Whatever the order I put it didn't work.
My setup for the Home is
Category Order - No Order
Article Order - Features article order
Thanks to Andrea's tip I changed line 106 in components/com_content/helpers/query.php to
$orderby = ' fp.ordering, a.featured ASC, ' . $queryDate . ' DESC ';
So sorting by the fp (front page) ordering is always first.
This is surely not the best correction but at least it solved my problem.
for me it looks like a bug in the query construction for the order