Active
Project:
Frontpage Slideshow
Version:
6.x-1.0-beta2
Component:
Documentation
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
26 Jun 2009 at 14:43 UTC
Updated:
8 Jan 2011 at 14:07 UTC
How do I order the slides so they appear in the order I want them to?
Comments
Comment #1
akolahi commentedYeah, i'm looking for this too. It seems the default order of slides is by node ID. I tried changing the authored date of my slides to see if it would affect the order and it did not.
Comment #2
jkasdorf commentedI tried to look for a solution inside of the project interface, but I finally had to resort to modifying the .module file. On like 841 of fpss.module I added "ORDER BY n.nid DESC" at the end of the query before the double quotes at the end. This orders the it so the newest slides show first from left to right or top to bottom. This is how it is working on mine and I can not confirm that this would be a universal fix, however I hope it may help you.
Also, if you change DESC to ASC, it does the opposite.
Comment #3
marsh commentedI added the following on line to the end of line 841
ORDER BY sticky DESC, created DESC
So if you make a slide stick it will stay at the top of the list otherwise the newer slides appear on top.
Comment #4
jon pollard commentedIf you use:
ORDER BY n.created DESC
you can change the value under "Authoring Information > Authored on" to sort all of your slides, rather than just the first one.