Forum Replies Created
-
In reply to: Internal Server error on Search
As this ONLY happens with bbpress, do you still recommend deleting the htaccess file?
In reply to: Most popular signature plugin (with HTML limiting?)Yep, installed and am using it. thanks.
For anyone having this issue, here is the fix:
In function: bbp_forum_query_last_reply_id
in file: bbpress/includes/forums/functions.php
change: if ( false === $reply_id ) {
to: if ( !$reply_id ) {
It needs to know that ‘0’ is not an acceptable reply ID and then query for a new one.
I am painstakingly going through the code to fix this issue, and due to the fact that I have no experience with bbpress code, it is way more taxing than it should be.
I will leave crumbs here so anyone more equipped than myself can jump in and repair it before I do and save us all a lot of trouble.
I have discovered that there is a bug with the following function:
bbp_forum_query_last_reply_id
This is called when the update freshness repair is run and is supposed to return the last reply ID for a forum. Right now, it is consistently returning ‘0’.
It is found in includes/forums/functions.php
This is still there. Is this a bug or what? Seems to occur after you delete a post for some reason. I have run the repair forums tool but it does not repair the issue.
In reply to: Hover or other topic preview?Perhaps it’s because <?php bbp_topic_excerpt?> needs to be closed as a function.
<?php bbp_topic_excerpt(); ?>
In reply to: Showing freshness of replies in forumsI am having the same issue.