Search Results for 'bbpress'
-
AuthorSearch Results
-
November 20, 2019 at 1:03 am #205992
In reply to: Any way to remove moderation ?
Chuckie
ParticipantIn my case not every post was going to moderation. It was just the fact that the feature was working right as in it was now detecting link counts. That was not working before.
There is another discussion setting to send all comments for moderation but I don’t think BBPress checks that setting.
Also, BBPress does not inform admin by email when post goes to moderation. That would make sense to be a option. You are getting there. Cool!
November 19, 2019 at 7:31 pm #205987Topic: ArgumentCountError thrown
in forum Troubleshootingzeddee
ParticipantOur bbForum has stopped working, giving the following error message. Could this be due to the recent plugin update?
ArgumentCountError thrown
Too few arguments to function UCC_bbPress_Threaded_Replies::get_topic_pagination(), 1 passed in /home/cotswol1/public_html/wp-includes/class-wp-hook.php on line 288 and exactly 2 expectedNovember 19, 2019 at 6:41 pm #205986In reply to: Any way to remove moderation ?
John James Jacoby
KeymasterI’ve perhaps uncovered a backwards compatibility issue with third party plugins that were using the now deprecated blacklist function.
In addition, everyone having issues here should remember that bbPress inherits many of the WordPress Discussion (Comments) settings. Moderation words, number of links, allowed tags, and a few others. If topics and replies are getting caught in moderation, comments of the same content would be also.
That said, the default behavior is NOT to land every single post in Moderation. If that is what is happening, something is broken.
November 19, 2019 at 4:37 pm #205978John James Jacoby
KeymasterCaching plugins misbehaving could definitely contribute to problems in a lot of areas.
Private and Hidden forums also do work a little bit strangely, especially without BuddyPress Groups on top of them to manage them a bit better, and especially when you have a mix of public and private within the same branch of a forum tree.
Imagine, if you will:
Public 1 |--Private 1 |--|--Public 2 |--Public 3Now, I login and create a Topic in the Private 1 forum.
How should that bubble up to the parent Public 1 category?
Then someone creates a topic in the Public 2 forum. How can a public forum even exist under a private forum?
bbPress won’t prevent you from doing these things, but it won’t really work very well when you do.
I think, to work best, we could never cache these values ever, because they’d always be based on what the currently logged in user can see, instead of being attached to the forums or the categories like they always have been.
But for now, for performance reasons, these Freshness values are working as intended, even though they aren’t a real great experience for Private and Hidden Forums underneath other Public ones.
November 19, 2019 at 4:13 pm #205974In reply to: “Forums” – Breadcrums
Chuckie
ParticipantThanks. But I am not sure what you are suggesting I do?
When I started out setting up bbPress I understood I had to create a page to list the forums. So I created a page (support-forums) and inserted this shortcode:
[bbp-forum-index]Are you telling me I don’t actually need this page on my website or need to use this shortcode? #confused
November 19, 2019 at 4:04 pm #205973In reply to: “Forums” – Breadcrums
John James Jacoby
KeymasterI don’t really understand why you need 2 separate pages for your forums.
If you create a page that matches the slug for your forum root, it will use that page instead, as well as the title.
Then, you can use bbPress shortcodes to fill in the content.
This is what we do here on bbPress.org, and it works pretty well.
November 19, 2019 at 3:24 pm #205970In reply to: Any way to remove moderation ?
Chuckie
ParticipantNovember 19, 2019 at 3:19 pm #205969In reply to: Fix for PHPBB3 to BBPress conversion script
wurkagency
ParticipantHi All,
Had the same issue as described above. The default phpbb.php import script didn’t convert anonymous users of topics and replies and the Pixenated script looped infinately with the conversion of users.
I’ve fixed the script and uploaded to PasteBin. Feel free to share widely.
https://pastebin.com/0QQbxL4zHow To:
1) Upgrade phpBB to v.3.2.5+
2) Install BBpress 2.6 RC7
3) Upload to /wp-content/plugins/bbpress/includes/admin/converters/phpbb.phpRemember that real men don’t do backups. They cry a lot.
November 19, 2019 at 3:05 pm #205965In reply to: Any way to remove moderation ?
Chuckie
ParticipantThis says to use 30? Or is that out of date:
November 19, 2019 at 2:10 pm #205952In reply to: Any way to remove moderation ?
Chuckie
ParticipantThis is the full function:
add_filter( 'bbp_kses_allowed_tags', 'ntwb_bbpress_custom_kses_allowed_tags' ); function ntwb_bbpress_custom_kses_allowed_tags() { return array( // Links 'a' => array( 'class' => true, 'href' => true, 'title' => true, 'rel' => true, 'class' => true, 'target' => true, ), // Quotes 'blockquote' => array( 'cite' => true, ), // Div 'div' => array( 'class' => true, ), // Span 'span' => array( 'class' => true, 'style' => true, ), // Paragraph 'p' => array( 'dir' => true, 'style' => true, ), // Code 'code' => array(), 'pre' => array( 'class' => true, ), // Formatting 'em' => array(), 'strong' => array(), 'del' => array( 'datetime' => true, ), // Lists 'ul' => array(), 'ol' => array( 'start' => true, ), 'li' => array(), // Images 'img' => array( 'class' => true, 'src' => true, 'border' => true, 'alt' => true, 'height' => true, 'width' => true, ), // Tables 'table' => array( 'align' => true, 'bgcolor' => true, 'border' => true, ), 'tbody' => array( 'align' => true, 'valign' => true, ), 'td' => array( 'align' => true, 'valign' => true, ), 'tfoot' => array( 'align' => true, 'valign' => true, ), 'th' => array( 'align' => true, 'valign' => true, ), 'thead' => array( 'align' => true, 'valign' => true, ), 'tr' => array( 'align' => true, 'valign' => true, ), 'video' => array( 'controls' => true, 'width' => true, 'height' => true, 'source' => array( 'src' => true, 'type' => true ) ) ); }if I introduce source into the top level then the source inside the video tag gets stripped completely from the output. So I can’t do that. I think bbPress needs tweaking to stop escaping the video tag content. Some how. For not admin.
November 19, 2019 at 1:36 pm #205947In reply to: Any way to remove moderation ?
Chuckie
ParticipantI am using the TinyMCE Insert Video plugin. I paste the URL into that. It works fine for admin. It is only non-admin.
My functions.php has some tags added to the array defined in here:
add_filter( 'bbp_kses_allowed_tags', 'ntwb_bbpress_custom_kses_allowed_tags' );Snippet:
'video' => array( 'controls' => true, 'width' => true, 'height' => true, 'source' => array( 'src' => true, 'type' => true ) )There must be a way for me to allow those without escaping for non-admin.
The path begins https.
November 19, 2019 at 1:23 pm #205945In reply to: Any way to remove moderation ?
Chuckie
ParticipantI am struggling with your other request. Something isn’t right. I have moderation still switched ON …
If I try to insert a video (only one video) as a non-admin and hit enter the video won’t play. When I edit the post the content looks like this:
<video controls="controls" width="300" height="150"> **source src="pathtovideo/pts-test-video.mp4" type="video/mp4" /**</video>bbPress has escaped the < and > symbols.
If I log back in as admin and perform the same task. I get a functional video link:
<video controls="controls" width="300" height="150"> <source src="pathtovideo/pts-test-video.mp4" type="video/mp4" /></video>I know it is a side issue but I don’t understand how to fix that and until I do I can’t complete the testing you wanted.
November 19, 2019 at 1:03 pm #205941In reply to: Download Older Versions of bbPress
Robin W
Moderatorgo to
then on right hand side select ‘advanced view’
and at the bottom you’ll find previous versions – select 2.5.14
November 19, 2019 at 12:43 pm #205940Topic: Download Older Versions of bbPress
in forum Troubleshootingselym
ParticipantEvery link I’ve found to this question in the title has led to a dead end so far. I need to roll back to a prior version of bbPress. (2.5.14) Can anyone point me in the right direction as to where I can find downloads for this?
November 19, 2019 at 12:36 pm #205939In reply to: Any way to remove moderation ?
thierrytregaro
ParticipantThanks for the time/code but closed bbpress this morning and moved to discourse. Lost the perfect integration with wordpress but this is a way more convenient way for me to handle a community maybe too big for bbpress
November 19, 2019 at 10:39 am #205934In reply to: Adding BBpress To A WordPress Site
brunov99
ParticipantHello,
As I was a newby in BuddyPrees & bbPress too I checked the Internet and found this website with a lot of infos. http://buddyuser.com
bVNovember 19, 2019 at 10:14 am #205927Topic: Footer issues
in forum Troubleshootingurthllc
ParticipantAfter installing bbPress, I noticed my footer on the Forum pages is skewed. All the Social Link menu is stretched on just the forum pages. None of my other pages have a problem.
Using Twentyseventeen theme with a child theme installed
WordPress vs 5.3
bbPress ver 2.6.1Link to site: https://lonestarlegends.us
November 19, 2019 at 8:57 am #205926In reply to: Notify user when a reply goes into moderation
Chuckie
ParticipantI created a trac ticket here in the hopes this might get progressed more easily:
November 19, 2019 at 5:09 am #205918In reply to: Any way to remove moderation ?
Chuckie
ParticipantHere is a result of my particular situation. I think a feature in bbPress is now working correctly whereas it did not before.
If you go to your WordPress Settings | Discussion area there is an option to tell it when to flag a message for moderation based on the number of links. Mine was set to 2. This is why the users post was flagged. It had 3 links.
When I tried 2 links it still when to pending. When I tried with 1, it was accepted. I increased my limit to 4 and now it will accept 3 links. So that is one reason.
The second reason is inserting images (using MCE toolbar). It will not let the user insert more than one image into the post (unless they are admin). I do not know how to increase this as I would also like it to be capped at 4 but there are no settings provided for images. I think the same will apply for videos.
November 19, 2019 at 2:00 am #205903In reply to: Any way to remove moderation ?
Chuckie
ParticipantPlease look at the associated, more active discussion on this subject. There are lots of users who now have to approve every post. I have provided comments in that discussion instead.
I suggest you review that discussion. True, there are complaints, which are all to easy to roll of the tongue, but the point it things have changed. I don’t want to repeat my feedback so please see the other thread.
I personally need to find a way to control things going into pending. It should only do so if it thinks it needs moderation. Not all posts. The other discussion I found the function that changed the way posts are moderated so so thing must be askew there.
If your forum is working ok then are you on WordPress 5.3? What are your WordPress discussion settings set to for moderation? It might be an idea to become a admin on one of our sites. Best way to test because I expect this is a common solution.
See: https://bbpress.org/forums/topic/need-users-to-be-able-to-posts-without-posts-being-approved/
November 18, 2019 at 9:59 pm #205901In reply to: Upgrade to 2.6.1 No Longer Loads Custom CSS
Wasca
Participant@tinkerbill Thanks, that seems to have fixed the problem for me. Just needed to create bbpress.min.css and have it in the same location as bbpress.css lives.
November 18, 2019 at 9:57 pm #205900Advansys
ParticipantOur site has a different problem to the issue which initiated this thread. After reverting to bbPress 2.5.14, the missing search content still persists. I don’t know when this issue appeared. No errors in the logs nor in the inspector console.
Will need to start the next level of troubleshooting.
November 18, 2019 at 9:22 pm #205899In reply to: Any way to remove moderation ?
thierrytregaro
Participantsorry to disagree. This is not a 3rd party plugin issue but a feature from bbpress that should be optional. Or, at least, that admin should be able to not use.
You do not fight spam with manual approve. I got days with over a thousands spams, GL doing it one by one LOL. Spamming is anti-spam business, not forum job (using server anti-spam + CleanTalk, maybe I had to remove one post this whole year. Out of 300k posts).
Today, I had to approve over 350 posts. Some of wich I had no clue why any piece of code could think of it as spam. And that included topics I, as admin, moved from one forum to another.
Whatever, migrating to Discourse is on its way and should be up tomorrow (it is but not public). There’s no way I can use a manually validating forum anymore. Those 5 years with bbpress were fun (in spite of some epic crashes).
November 18, 2019 at 8:45 pm #205897In reply to: Any way to remove moderation ?
John James Jacoby
KeymasterSince the problem appears to be with a third party plugin, you’re unlikely to get a lot of support from the bbPress development team here for code that isn’t theirs.
In addition, you have not clearly stated what the actual problem is. You have clearly stated your complaints and how you feel about them, but you haven’t included instructions on how to replicate your problem.
Naturally, these forums are using bbPress, and we aren’t having the same moderation issues that you are. That doesn’t mean there isn’t something wrong, simply that no one knows where to look unless you can show them.
November 18, 2019 at 8:26 pm #205895Topic: Unable to Reply to a Reply with Visual Editor
in forum Troubleshootingboberry
ParticipantWhen I click reply to a reply in a topic I am unable to type in the Visual Editor box. I can type into the Text Editor but it will not show in the Visual Editor box.
The forum-beginner-posts plugin was updated a week ago. Since that is the plugin that adds in the visual editor, I’m wondering if that update caused a conflict somewhere, maybe with either the bbpress or buddypress plugins?
WordPress 5.3 running Boss. Child Theme theme.
bbPress Version 2.6.1
https://members.lockeinyoursuccess.com/ -
AuthorSearch Results