WPKube
Forum Replies Created
-
Forum: Plugins
In reply to: [Authors List] Pagination not workingThe first number shows current page number, the 2nd one does similar but without a min limit of 1 and the third one shows the amount of pages there are.
That third one is the important part, since it reports 1 then there’s an issue with the code that gets the total amount of users.
That is located on line 79 of the same file.
$total_users = $total_users['avail_roles']['author'];After that can you add the following:
var_dump( count_users() );And let me know what’s shown on the page. This one will show up before the authors list. Should display the total and also the counts separated by the role (administrator, author, subscriber…)
–
As for the pagination control for the post affecting the authors as well, yeah, both paginations use the native WordPress pagination functionality which does not differentiate between different paginated data on the page, it affects them all.
Forum: Plugins
In reply to: [Authors List] Author name link to BP profile posts link to post archiveHi @earl_d
You’re welcome.
The available fields and options can be found at the plugin info page, https://wordpress.org/plugins/authors-list/
Forum: Plugins
In reply to: [Authors List] Pagination not workingFile:
includes/display.php
Line:490You’ll see
$current_page = max(1, get_query_var('paged'));Below that line add:
var_dump( $current_page, get_query_var('paged'), $total_pages );Then go to the page with the authors list and there should be 3 numbers shown after the list. Let me know what those numbers are.
Forum: Plugins
In reply to: [Authors List] Author name link to BP profile posts link to post archiveYou can achieve that by disabling the link element and then adding your own content in that area:
[authors_list show_link="no" after_link="{alf:link url=buddypress_profile}"]Forum: Plugins
In reply to: [Authors List] Pagination not workingThe pagination is generated by a native WordPress function called
paginate_links, so I’m not quite sure what’s causing the problem.Do you have some experience with editing PHP files, if you do we can try a couple changes to figure out what’s going on.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Not able to make commentHi @tammya1999
Happy to hear it’s sorted out.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] reCAPTCHA v3 support is missing?Hi @gggshine999
Correct, only V2 at the moment. We’ll add support for V3 in the next update. Will be released in a couple days.
Forum: Plugins
In reply to: [Authors List] Two words role – not displayedHi @jts_il
Thanks, happy to hear that.
As for the issue, WordPress automatically replaces blank spaces with a
_for the ID/name of the role.Try
guest_writeror if that does not work tryguest-writerForum: Plugins
In reply to: [Authors List] Pagination not workingI tried the same shortcode on my installation and it works fine.
[authors_list style="4" columns="1" columns_direction="vertical" amount="4" pagination="yes" only_authors="no" show_bio="no" show_link="no" show_avatar="yes" avatar_size="20" skip_empty="no" orderby ="post_count" ]The only thing that comes to mind that maybe it’s not finding more than 4 authors.
What happens if you set the amount parameter to 6? Does it still show 4 or does it show 6?
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Not able to make commentHi @tammya1999
Can you send over the URL to the site and enable the options in our plugin. I’ll test out submitting a comment, seeing what happens might give me an idea as to what is causing it.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] List of subscribed users loading forever.Hi @honoluluman
The subscription management in the admin panel or the one on the front-end?
I’m assuming you are talking about the one in the admin panel. In that case, can you open the developer tools in the browser (press F12) and at the top left of that section click on “Console”. After that refresh the page and let me know if any errors are shown in there.
Forum: Plugins
In reply to: [Cool Tag Cloud] CSS Errors and WarningsHi @peterjohann
Thanks for reporting, will pass that on to the developer.
Hi @gtarafdarr
That is correct, the plugin is only compatible with the classic editor.
There are limitations in Gutenberg which made it impossible to alter the Gutenberg links options. We’ll recheck again to see if the situation has changed in version 5.8 and if it did we’ll make it work.
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Not able to make commentHi @tammya1999
I’m unable to replicate the issue.
When you say “comments weren’t being allowed” what exactly happens? Do you not get the form for leaving comments, or maybe the form is there but when submitting it you get an error, or something else? Are all posts affected? Any details you can share will be of great help to figure out what’s happening.
- This reply was modified 4 years, 9 months ago by WPKube.
Hi @mobiflip
Thanks for the suggestion, will pass it on to the plugin owner.