Forum Replies Created
-
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.
Unfortunately whilst there have been several downloads of my plugin there appears to be zero installations of it. Oh well!
In reply to: How to get Tiny MCE to show for my bbpress forums?Have you tried other plugins like:
TinyMCE Advanced
Advanced TinyMCE ConfigurationThe data in the mce folder are the release build min files from the official TinyMCE plugin downloads.
In reply to: Indent forumsDo you really have two
::
in your CSS file? There should be one.If you have tried it then feel free to add a review there.
Bye for now.
Thank you. @fence1.
Thank you!
In reply to: How to mitigate spam registration?Hi
I only use the recaptcha on the registration, lost password (etc.) and submit posts forms. I do not use recaptcha on the login form.
In reply to: Center align IMGUR imagesThanks. I tend to stick with the visual TinyMCE editor rather than the text editor because toggling the editors messes up my code example snippets.
In reply to: Create New Topic buttonAn alternative is to use the dedicated shortcode on a page:
[bbp-topic-form]
This is the best way I have found to allow a logged in user to create a topic. Then, you just link to this page from wherever.
Thanks.
In reply to: New to bbPress – registration emailI use bbpress no spam notify plugin where you control the content of each email that is sent out …
In reply to: User idThanks for that! I have also learned that when I edit the topic in the back-end I can start typing their username and it will select them/ their ID for me from the list.
In reply to: Uploading Pic Directly Into PostThis happens on mobile devices for some reason. Larger devices like tablets and computers have the button to create topics. It is very annoying,
In reply to: Uploading Pic Directly Into PostDon’t know. Sorry. As I mentioned I can embed images using TinyMCE but have to be on my domain.
And pasting a imgur link is simple and that turns into an embedded image too. Those are the two routes I use. Some users decide to attach.
Night. zzz
In reply to: Uploading Pic Directly Into PostGD Attachment will show as a thumbnail. But, if you have lightbox activated on your site then you can click the image and it shows it enlarged. Works very nice.
As for TinyMCE you have to make sure you are not using the cut down toolbar which will strip the extra buttons from the display.
In reply to: Uploading Pic Directly Into PostI see that TinyMCE Advanced allows to post images but they only show as rectangular thumbnails. Any other way to display images, even if only sized down, but still larger than a thumbnail?
They don#t show as thumbnails. They show as proper images.
In reply to: Splitting a topicAwesome, never thought of that!
All good.
In reply to: Uploading Pic Directly Into PostI use the advanced TinyMCE bar which allows you to specify an image to display. The only thing is that you must upload the image to your domain as that is the only accepted place for the image to be approved.
There is also imgur website you can upload it to.
Finally, I allow GD Attachments and if a user attaches an image to the topic / reply it shows as a thumbnail which can be clicked and it used larger with the lightbox system on my website.
In reply to: “Reply To” Combo – When editing a “Reply”This is not just a CSS issue. As you can see from the source HTML it is truncating the text:
” 3209 – This is a”
etc. I can widen it to 100% and it will still only list that chunk.
In reply to: Block a user and delete all his topics and repliesI am just a user like you. I afraid I have no direct contact with the software developers.