Two new games coming from Arcen! Exodus of the Machine!And Skyward Collapse!
Yeah, I noticed that they removed the next page button -- that is annoying indeed.
It's not perfect, but the old Arcen theme works well enough and has the previous/next page links.
Quote from: Fiskbit on July 19, 2011, 10:39:12 PMIt's not perfect, but the old Arcen theme works well enough and has the previous/next page links. it is missing the editor for the post markup, though.
// Show the first page. (>1< ... 6 7 [8] 9 10 ... 15) if ($start > $num_per_page * $PageContiguous) $pageindex = sprintf($base_link, 0, '1'); else $pageindex = '';
// "Prev" $tmpStart = $start + $num_per_page * -1; if (($start / $num_per_page + 1)>1) { $pageindex = sprintf($base_link, $tmpStart, "Prev"); if ($start > $num_per_page * $PageContiguous) $pageindex .= sprintf($base_link, 0, '1'); else $pageindex .= ''; } else { if ($start > $num_per_page * $PageContiguous) $pageindex = sprintf($base_link, 0, '1'); else $pageindex = ''; }
// Show the last number in the list. (1 ... 6 7 [8] 9 10 ... >15<) if ($start + $num_per_page * $PageContiguous < $tmpMaxPages) $pageindex .= sprintf($base_link, $tmpMaxPages, $tmpMaxPages / $num_per_page + 1);
// Show 'Next'. $display_page = ($start + $num_per_page) > $max_value ? $max_value : ($start + $num_per_page); if (($display_page <= $tmpMaxPages)&&($tmpMaxPages > 1)) $pageindex .= sprintf($base_link, $display_page, '<span >Next</span>');
Wicked! Thanks for that, Flatline. Added it in, and looks like it works like a charm.
Good grief! Is that an actual theme, or is that just a mockup screenshot? That looks really great, at any rate. My problem is just not having a lot of time to devote to things of that nature at the moment, but I love the look.