Solution for Pagination Problem
-
When i use the permalink like in ur site http://sitename.com/blog-example/page/2/ , it doesn’t work but if I use the default, ?paged=2, it works.
Ok the solution for work with permalinks is:Search the function scu_paged($maxpages) in lib.php
comment this:/* $o .= paginate_links(array( 'base' => str_replace($big, '%#%', esc_url(get_pagenum_link($big))), 'format' => '?hmmpaged=%#%', 'current' => max(1, $_GET['paged']), 'total' => $maxpages )); */add this:
$o .= paginate_links(array( 'base' => @add_query_arg('paged','%#%'), 'format' => '?paged=%#%', 'current' => max(1, $_GET['paged']), 'total' => $maxpages ));This work with permalink structure /%postname%/
Good Work for this fantastic plugin.
It work like a charm!
It is a pity that not continue development.
The topic ‘Solution for Pagination Problem’ is closed to new replies.