It is currently on PHPbb 3.1.3.
Known issue that is being worked on.
https://bbpress.trac.wordpress.org/ticket/2716
if you want you can also just patch the current phpbb importer using the most recent file @netweb posted.
I doubt someone will make a plugin like this in the near future because it’s listed as a native bbPress feature for 2.7. ( next year at bbPres dev pace )
https://bbpress.trac.wordpress.org/milestone/2.7
If you’re feeling comfy editing the bbPress template files you could make something like this in a very basic setup.
1) You’d need to add a few different user_roles to WordPress and give each moderator it’s own user_role
2) Next you’d have to work with conditional PHP tags. For example: PHP -> If [ user_role = xxx AND topic is in forum ID ZZZ ] then –> show the moderation links. IF the above rule is not true –> don’t show them at all and return nothing.
https://codex.wordpress.org/Conditional_Tags
This isn’t very difficult if you have beginner PHP knowledge or let’s say you’re not afraid to touch the template files on a development install. Never do this on a Live site if you don’t know what you’re doing.
Hello!
Please suggest a plugin for bbPress, which will appoint a moderator for each sub-forums? To moderators can manage only their individual sub-forum (and other sub-forums, they might not moderate).
And which a plugin (for bbPress), will enable the board administrator to release some people from the pre-moderation and placed them in order of comments? (To be able to return this function back).
Hi, guys,
Yes, I know this topic has been somewhat discussed in a few other threads and I’ve read through them all, but I’m still not really clear on what the pros/cons are for installing this plugin in one’s existing domain/website vs. in a sub-domain. One comment that made an impression on me was one person’s claim that over time it would be hard to keep the bbpress databases optimized if you install in your main domain since bbpress shares databases with wordpress. This, according to the person, would slow down the site.
Can anyone with experience or wisdom give me a definitive statement of the pros and cons of installing in one’s main site domain vs. a sub-domain so that I can stop this endless search for answers and just install this thing? π THANKS!!
I know there used to be a plugin for a visual editor that worked with bbpress, but I can’t seem to remember what it was called or how to set it up.
I want a plugin that has more than the very basic features of the visual bbpress has built in. Does anyone remember the name of said plugin?
Hi,
I just run a small forum and am looking to move it to bbpress. It is currently on PHPbb 3.1.3. I have everything entered in correct I am sure, but all I get when I import is the replies… No users, categories, topics, etc… just replies.
Let me know if you have any suggestions please.
Repair any missing information: Continue
Conversion Complete
No reply_to parents to convert
Converting replies (100 - 199)
Converting replies (0 - 99)
No tags to convert
No super stickies to stick
No stickies to stick
No topics to convert
No forum parents to convert
No forums to convert
No passwords to clear
No users to convert
Starting Conversion
Hi, i have just launched a new site that has a bbPress Forum. I am using Wishlist member as it has premium products within it. When WLM is activated, the first (original) post of a topic doesn’t show. If I disable WLM it shows. I note that some people were having the same issue with S2 Member a while ago. Can anyone provide some clues? Thanks
Using the Avada theme for my website and have a Fusion Sliders that cap the top of my pages. I have the rest of the layout for my bbpress working great after some help from others here…
But how do I get bbpress to pull the Fusion Slider and attach it to the top of the page above the posts/replies when New Topics are created?
I know that I can go in to topics and manually do it once the topics are created, but want to set it up where it automatically attaches when anyone creates a New Topic.
I’m sure there’s probably something I can put in the file that creates the new “page” but I need a little help/direction in doing that.
(Worst case/last resort: How to just do an image instead?)
@sayedwp
The setup current user error is a bug in WordPress.
https://core.trac.wordpress.org/ticket/24169
@jookkoo
The groups issue is known bug and the trac ticket for it is here.
https://bbpress.trac.wordpress.org/ticket/2782
OH my god, why the plugin author donβt fix this issue.
But most of all need to say thank you again.
It is an issue with two different plugins, bbPress and BuddyPress.
the fix seems to be slated for bbPress 2.6
The Groups error might be a known issue too.
I think that is this ticket
https://bbpress.trac.wordpress.org/ticket/2782
read this trac ticket , and follow some of the links to the duplicates
https://bbpress.trac.wordpress.org/ticket/2804
There seems to be an issue in WordPress.
https://core.trac.wordpress.org/ticket/24169
I also found that when, as Keymaster, I went to Edit a particular topic or reply, the Edit field displayed no text and I was not able to save any changes. When I commented out this particular snippet form derricksmith01’s solution the problem dissappeared.
function buddyboss_bbpress_form_reply_content($retval){
global $bp;
if (end($bp->action_variables) == 'edit' && in_array('topic', $bp->action_variables) && in_array('reply', $bp->action_variables)) {
$post = get_post( bbpress()->current_reply_id );
return esc_textarea( $post->post_content );
}
}
add_filter('bbp_get_form_reply_content','buddyboss_bbpress_form_reply_content', 10, 1);
nsParticipant
Hello.
I’d like to solve problem.
Would anyone answer to my problem?
Firstly, the conditions of WordPress, bbPress, design theme, plugin, and function.php are below.
Wordpresss: Latest version
bbPress: Latest version
design theme: Original building
plugin: introduced “bbPress – Sort topic replies”.
The settings of this plugin are “Global:Descending”, “No Parent:Default”, and “Always show lead Topic:Yes”.
function.php: Below code exists.
add_filter('bbp_before_has_replies_parse_args', 'change_reply_order');
function change_reply_order() {
$args['order'] = 'DESC';
return $args;
}
add_filter('bbp_show_lead_topic', 'custom_bbp_show_lead_topic' );
function custom_bbp_show_lead_topic( $show_lead ) {
$show_lead[] = 'true';
return $show_lead;
}
Then, here is main topic.
The function of bbPress itself is that after the user replies to the parent topic in topic page, next screen shows the last page(the page of max number) if the pagination shows.
With the setting of “bbPress – Sort topic replies” plugin is under “Global:Descending”, the redirection which I expect is to go to the first page.
I think that this solution isn’t https://bbpress.org/forums/topic/new-replies-redirect-to-last-page/
I’ve searched and tried to solve the problem, however I can’t find the solution.
I wonder my current settings or ways might be wrong.
Thanks.
Getting 3 more notices
Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in /Applications/MAMP/htdocs/supernova/wp-includes/functions.php on line 3560
Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in /Applications/MAMP/htdocs/supernova/wp-includes/functions.php on line 3560
Warning: Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/supernova/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php:28) in /Applications/MAMP/htdocs/supernova/wp-includes/pluggable.php on line 1196
Same Issue, I am using the latest version of bbpress and buddypress.
Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in /Applications/MAMP/htdocs/supernova/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28
I have been working as a research paper writer in one of the leading research paper writing service for the past 5 years and in the past month a forum has been created for our website. In that forum, our my management has wished to change the theme. But,they don’t like the available themes. so,please tell me when the new themes will be get released for the bbpress forums.
Adding menu links like that is quite difficult unless you manually create the menu in HTML and just not worry about the WordPress menu configuration.
I suggest maybe creating a copy of the login widget and add whatever links you want for the suer to the bbPress login Widget.
This explains it quite briefly.
Layout and functionality – Examples you can use
If you need help or an example plugin to create this please reply back.
@muchman13 and @dreambot
Guys this is an old topic
The theme was probably for bbPress v1 so not for the bbPress 2 plugin
the guy doesn’t even use WordPress, that is just a static site hosted on I think Github
@jturet
I don’t know , suggest you hire a developer if you really want this functionality.
but by default bbPress and BuddyPress do not use the visual editors so Id say just use the default text editor.
@littleapplebigpear
To create a topic you choose the forum you want to create a topic in from the left forums list.
then you scroll down to the topic form.
to fix your issue.
#bbpress-forums .reply,
#bbpress-forums .reply:hover {
color: #000000 !important;
}
hello, sorry to budge into this convo.. but i don’t know how to start a new topic.. lol
I cant seem to find a solution to this:
my bbpress only show the comments of the topic creator but unable to show the comments of others who comment on that topic.. please help π
Here is what i am referring about(notice the blank replies other than the topic creator):
http://sgreview.sg/forums/topic/hai-di-lao-hot-pot/#post-110
Hello.
My site in wp-config.php i uses define(‘WP_DEBUG’, true) and it warning as below:
Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in /home/xxx/xxx/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28
Please help
Thank you
try adding this to your functions file
add_filter('bbp_has_replies_query', 'modify_replies_query');
function modify_replies_query($bbp_r) {
$bbp_r = 'ASC';
return $bbp_r;
}
Functions files and child themes – explained !
ok, just because there are the same symptoms, doesn’t mean that the solution is the same !
have you installed
https://wordpress.org/plugins/bbpress-genesis-extend/