Forum Replies Created
-
This plugin lists attachments at the end of the topics and can be viewed in lightbox.
“gd bbpress attachments” plugin uses the wp media library. You need to change your plugin.
In reply to: Converting links to digital linksThis needs custom coding. On the other hand, changing permalinks to numbers is probably not good for seo.
In reply to: Delayed first post for newbiesYou can use this plugin against spam: bbPress – Moderation Tools
You can enable moderation for only new users. For example first topic will wait for moderation. If you publish the first topic, next topics will be published directly for the new user. Works fine for me.
In reply to: How do I identify empty topic tags?I don’t know it this helps and I did not test it with bbpress.
This plugin finds and deletes unused tags:
In reply to: Creating a new topicHi Adam,
A seperate page for editor can be diffucult. An easy way would be hiding it and showing it via button. (javascript)
You can remove everything between comma “,” and “ago” this way: (put in functions.php)
function short_time ($output) { $output = preg_replace( '/, .*[^ago]/', ' ', $output ); echo $output; } add_action ('bbp_get_time_since', 'short_time') ;
In reply to: Hiding replies for non-loggedin usersyou need to put this in your functions.php (better child theme)
In reply to: Hiding replies for non-loggedin usersyou can try something like this:
function custom_logged_in_replies($posts){ if (!is_user_logged_in()){ $posts = null; echo 'Login to see the replies'; } return $posts; } add_filter('bbp_has_replies', 'custom_logged_in_replies');
In reply to: bbpress topics for postsTo fix problems for this plugin in WP 5.5.X try this:
In reply to: example of a bbpress forumTurkish Business Directory’s Forum : https://www.turk5.com/forum/
In reply to: bbPress like FlarumGood to hear that wordpress + discourse works fine. In my case, I am quite happy with bbpress, especially version 2.6 is pretty fast.
In reply to: bbPress like FlarumIs there any live forum site using bbflarum? None of the forum urls given in this topic is working.
In reply to: # of Users Currently Viewing ForumAny new plugins/ideas here?
In reply to: User Subscription gets lostthanks for the info, Robin.
In reply to: User Subscription gets lostHere is the related ticket:
In reply to: User Subscription gets lostthank you, @robin-w
In reply to: User Subscription gets lostadmin save puts a subscription on a revision post (54879). I think this should be corrected.
In reply to: User Subscription gets lost@robin-w , thanks for your advise. RC7 partially solved the problem.
This is before updating topic (post_id:54878) in admin area:
mysql> select * from forum_postmeta where meta_key="_bbp_subscription" ; +---------+---------+-------------------+------------+ | meta_id | post_id | meta_key | meta_value | +---------+---------+-------------------+------------+ ..... ..... | 35265 | 54878 | _bbp_subscription | 11743 | +---------+---------+-------------------+------------+
This is after updating the topic (post_id:54878) in admin area:
mysql> select * from forum_postmeta where meta_key="_bbp_subscription" ; +---------+---------+-------------------+------------+ | meta_id | post_id | meta_key | meta_value | +---------+---------+-------------------+------------+ ..... ..... | 35265 | 54878 | _bbp_subscription | 11743 | | 35280 | 54879 | _bbp_subscription | 1 | +---------+---------+-------------------+------------+
So, the user subscription is there but there is a new unnecessary row, the admin user is subscribed to a non-existing topic. post_id=54879 does not exist.
Who can we report bugs?
In reply to: User Subscription gets lost@robin-w , No, I realised this as my forum was already 2.6. I was wondering why users don’t answer the topics. After testing I saw that all subscriptions are gone, since I update tags of all topics.
In reply to: bbPress 2.6 Release Candidate 3@JJJ , I have RC5 running. Whenever I update a topic in admin area the user subscriptions get lost. As admin, I need to correct spelling errors and tags of a topic. But after saving (in backend admin area), all subscriptions get lost. Is this a bug?
In reply to: Admin subscribes a user to a topic@kurzbaginski , Thanks for sharing. Does this also work for bbpress 2.6?
I have another issue that, whenever I update a topic in admin area, the subscriptions get lost.
I have to find a way to keep the subscriptions after updating a topic in admin area.
In reply to: User Subscription gets lostHi @robin-w ,
do you have any idea regarding this issue? Post updates (in backend) on topics delete all subscriptions.
Is this a normal behaviour? When yes, how can I keep subscriptions after a topic update in admin area?
Changing and saving topics in backend deletes subscriptions too. How can I stop this behaviour?
In reply to: User Subscription gets lostI have bbpress 2.6 RC5