Forum Replies Created
-
In reply to: User Statistics
That plugin also has another problem.
I have a User Approve plugin.
Even new users who I have not yet approved show at the bottom as new users. They shouldn’t,t be listed.
In reply to: User StatisticsYou’re welcome. I dunno, maybe you can shoehorn it into bsp as a feature. Thanks for putting it on your site though.
In reply to: User StatisticsI think this was why:
https://wordpress.org/support/topic/bbpress-advanced-statistics-logged-out/
I have only just noticed this. I use the “bbPress Advanced Statistics” plugin as I like the way it presents the data at the bottom on the forum page.
However, if I “log out”, it still lists all the names of the users from the last 24 hours. That is not right. It should only list last 24 forum activity if a user is logged in. Technically it is exposing users names for a non logged in user when I don’t want it to.
In reply to: User StatisticsYes, I have the code. And originally it was available and after I made my first concern about it exposing usernames when it shouldn’t somebody decided (somehow) to lock it online in the plugin repository.
This is my current plugin (with my corrected code discussed above):
https://www.dropbox.com/s/vjovpjnk22gxcct/bbpress-improved-statistics-users-online.zip?dl=0
In reply to: User StatisticsIn reply to: User StatisticsI think he is on about the statistics one where you showed me the needed code changes and said someone clone the plugin.
In reply to: Image preview from URL pasted within bbpress posts?I do one of two things ….
1. I upload images to IMGUR and simply paste the URL into the topic. It magically turns into a preview when you hit Submit.
2. I use the TinyMCE toolbar. I use a couple of well known and established plugins to include the Insert Image button. What you do is upload the image to your webspace (it must be on your forum domain). Then when you insert image you paste the URL. You know if it will be OK because it tells you the dimensions. When you click OK you will see in in the TinyMCE visual editor.
I am more than happy with both experiences. My only concern is that the TinyMCE authors are only supporting version 5 of their toolbar from January 2021 and WordPress uses version 4.x. There is no agreed migration plan to get WordPress working with version 5 of the toolbar. I don’t know long term ramifications of that.
In reply to: Format of the bbPress topic linksInteresting observation. Thanks!
In reply to: How do I identify empty topic tags?I think this is not the same thing. This is listing posts with no tags.
The summary is reporting tags with no posts. So we must have two orphaned tags.
In reply to: How do I identify empty topic tags?Interesting. When I try that it yields the following output:
7415
6447
5612
5386
4601
4466
4182
4027
3754
3753
3614
3542
3372
3368
3189
3101
3061
2508In reply to: How do I identify empty topic tags?Please look here and you will see a widget:
It is the “bbPress Forum Statistics” widget.
In reply to: How do I identify empty topic tags?Appreciate any guidance on this.
In reply to: bbPress 2.2.6 – Upgrade ForumsThanks for the update.
@pathfinderforme I don’t really understand your question.
Thanks @marksmith11
In reply to: Using this forum on iPhone7 / spam on this forumGot it.
In reply to: Using this forum on iPhone7 / spam on this forumSorry but can’t see that. Screenshot?
In reply to: Using this forum on iPhone7 / spam on this forumThat’s just it. There is no Create New Topic link at the top.
In reply to: Using this forum on iPhone7 / spam on this forumActually, I now find login and logout when I click my name. But I can’t create a new topic.
In reply to: Using this forum on iPhone7 / spam on this forumDon’t get me wrong. My own site is fine 100%. BBPress in itself must be ok. But this literal website has issues.
In reply to: Using this forum on iPhone7 / spam on this forumCool. Good to know it is on top of. No worries!
But it was not a personal comment at anyone. It is a pity it all falls on you and not some other shoulders. We are grateful …
Well done! And thanks.
I am not sure if it is related but things like videos can trigger moderation to kick in. I have personally switched off moderation since the current mechanism is by no means efficient. Any topic / reply that goes to moderation just vanishes and the user is not informed. This is clearly not OK but I have no idea to improve it in the bbPress code.
There is a ticket open for this issue for several months now but I don’t think it is being worked on. You can go into your discussion settings and adjust certain properties that affect when content will trigger moderation. This is in your WordPress settings.
But like I say, I switched off moderation all together due to the confusion is causes for users. There are other topics on here with info on how to do that.
I am not saying it is the cause of your problem. Just wanted to mention it.
In reply to: How to get Tiny MCE to show for my bbpress forums?I have no knowledge about the text editor toolbar I am afraid. All I have ever done is extend the tools on the TinyMCE toolbar. So I can’t help you with the text toolbar,
In reply to: How to get Tiny MCE to show for my bbpress forums?You can use the snippets plugin or your child themes functions.php file.
In reply to: How to get Tiny MCE to show for my bbpress forums?I use this code on my website
// ============================================================== // Tweak MCE Toolbars (bbPress Editor) function ajt_enable_visual_editor( $args = array() ) { global $bsp_style_settings_form ; $args['tinymce'] = true; $args['teeny'] = false; if ($bsp_style_settings_form['Show_editorsactivate'] == 1) $args['quicktags'] = false; return $args; } add_filter( 'bbp_after_get_the_content_parse_args', 'ajt_enable_visual_editor' ); // ==============================================================
Works for me.