emi662002
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Kebo Twitter Feed] Widget not showinggreat! its working now! Thanks for the quick reply.
Forum: Plugins
In reply to: [WP-Paginate] [Plugin: WP-Paginate] wrong linkyes, i noticed so while i was trying to figure out what was wrong.
maybe its something with my loop, cause i have a customized query. it works now with the fix mentioned above, i know its not the best solution, and its not recommended but its the easiest until i can go further with the investigation.
Thanks for the reply!
Forum: Plugins
In reply to: [WP-Paginate] [Plugin: WP-Paginate] wrong linki figured out a way to fix it, inside the plugin
it appears to be a problem with the
esc_url(get_pagenum_link($page + 1)this is the fix
$nextlink = ($this->type === 'posts') ? esc_url(get_pagenum_link($page + 1)) : get_comments_pagenum_link($page + 1); if($page == 1 && $this->type === 'posts' && $_GET['cat'] != ""){ $nueva_pag = get_query_var('paged') + 1; $nextlink = get_category_link($_GET['cat']) . "&paged=" . $nueva_pag; }and the same for the loop for the links
Forum: Plugins
In reply to: [WP-Paginate] [Plugin: WP-Paginate] wrong linkand also this happens only in the first page, if i go to another page writing the right link, i can go back and forth with no problems
Viewing 4 replies - 1 through 4 (of 4 total)