dkgaddy
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Facebook Timeline (MF Timeline)] showing events by date ascendingConsider this a correction to the previous post. Sorry. It was a mistake to comment it out. Instead you should change the sort to this:
ksort( $events ); // Sort the years numeric
This still sorts the array but does it from low to high instead of high to low.
Consider this a correction to the previous post. Sorry. It was a mistake to comment it out. Instead you should change the sort to this:
ksort( $events ); // Sort the years numeric
This still sorts the array but does it from low to high instead of high to low.
I had this same problem and figured it out. Hope this helps:
In WP go to Plugins>Editor, choose MF Timeline from the dropdown in the upper right. The file: class-mf-timeline.php should appear in the editor. Look for this line:
krsort( $events ); // Sort the years numeric
Just comment it out:
//krsort( $events ); // Sort the years numeric
Then click the Update File button at the bottom. This should reverse the order in which the dates are being returned.
Forum: Plugins
In reply to: [WP Facebook Timeline (MF Timeline)] showing events by date ascendingI had this same problem and figured it out. Hope this helps:
In WP go to Plugins>Editor, choose MF Timeline from the dropdown in the upper right. The file: class-mf-timeline.php should appear in the editor. Look for this line:
krsort( $events ); // Sort the years numeric
Just comment it out:
//krsort( $events ); // Sort the years numeric
Then click the Update File button at the bottom. This should reverse the order in which the dates are being returned.