Eric
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Paginate] Plugin looks to be abandoned… :(The plugin was transferred to a new owner, who did not maintain it. I have found a new person to take it over, which should happen in the next week or two.
Forum: Plugins
In reply to: [SimpleModal Login] No page refresh after loginSounds like a JavaScript error or something is preventing it from working. Do you know how to check for JS errors? If you have a link to your site, that might help as well.
Thanks,
EricForum: Plugins
In reply to: [WP-Paginate] Stylesheet placement in child themeWP-Paginate 1.3.1 contains the fix. Thanks sunamumaya!
Forum: Plugins
In reply to: [WP-Paginate] Stylesheet placement in child themeThanks for finding that! I’ll get a fix together shortly…
Forum: Plugins
In reply to: [WP-Paginate] How to input wp-paginate code into a postHello,
wp-paginate is to display a list of pages for a category or archive, not for multi-page posts. Not sure if that clear or not ??
Based on your post, I’m not entirely sure what you are looking to do…
Forum: Plugins
In reply to: [WP-Paginate] Love the Plugin, But…I haven’t done anything because I’m still not sure how it would work. It makes sense to do this for a post that is paginated or for category/tag archives, but that would seem to conflict with also doing it for comments.
According to yoast, comment pagination should be turned off.
Perhaps an ajax solution would better suit your needs and prevent this issue? At this point, I do not have enough clarity to implement anything for WP-Paginate.
Forum: Plugins
In reply to: [WP-Paginate] WP Pagination not working in category.phpYou could try and turn on php error reporting and/or check your web server’s error logs.
Forum: Plugins
In reply to: [WP-Paginate] Love the Plugin, But…After further investigation, it looks like WordPress already does this. When I look at the source of a post, there is a prev/next link in the head.
Let me know if I am missing something…
Forum: Plugins
In reply to: [WP-Paginate] pagination not working for custom post typesSounds like a configuration / template issue. When set up correctly, you should not experience that issue.
Not sure how else to help without seeing the code/template that you are having the problem with.
Forum: Plugins
In reply to: [WP-Paginate] WP Pagination not working in category.phpAs far as I can tell, it looks like you have the pagination in the wrong place.
I would think you should change:
<?php endwhile; else: ?>
<?php endwhile; if(function_exists('wp_paginate')) { wp_paginate(); } else: ?>
Forum: Plugins
In reply to: [WP-Paginate] Love the Plugin, But…Thanks for the feedback and glad you find the plugin useful!
So, just to be clear, you are just asking for this to be implemented for the “page” pagination, not comments, correct? I’ll take a look and see what I can do.
Thanks!
Forum: Reviews
In reply to: [WP-Paginate] badSorry to hear that you were not happy with the plugin. Do you care to elaborate?
Thanks for catching that…and apologies for missing it. It should be fixed with 1.0.6.
locsmandisz – can you send me a link to view?
Forum: Plugins
In reply to: [WP-Paginate] [Plugin: WP-Paginate] paginationIt looks like you want to at least edit the custom\pagination-posts.php file:
Change:
<?php } else { ?> <div class="page-nav fix"> <span class="previous-entries"><?php next_posts_link('<span class="icon"> </span>'.__('Older Entries', 'suffusion')); ?></span> <span class="next-entries"><?php previous_posts_link('<span class="icon"> </span>'.__('Newer Entries', 'suffusion')); ?></span> </div><!-- page nav --> <?php } } ?>
To:
<?php } else if (function_exists("wp_paginate")) { wp_paginate('before=<div class="page-nav fix">'); } else { ?> <div class="page-nav fix"> <span class="previous-entries"><?php next_posts_link('<span class="icon"> </span>'.__('Older Entries', 'suffusion')); ?></span> <span class="next-entries"><?php previous_posts_link('<span class="icon"> </span>'.__('Newer Entries', 'suffusion')); ?></span> </div><!-- page nav --> <?php } } ?>