Search Results for 'bbpress'
-
Search Results
-
Hi all,
have gone through numerous posts on the issues of importing phpbb to bbpress. I have been using the latest RC version of bbpress. I am using latest version of WP and phpbb 3.0.11
I have tried cleaning, repairing, resetting and trying again. Nothing works. It shows everything as 0 items to import, no forum, no topics. Only it imports replies without anything else.
Any help will be appreciated. I really want to move away from phpbb forum 🙁
Topic: editing post template
I’m looking to do something relatively simple – move the tags in a single topic post up under the title, rather than under the search bar – their default position.
I’ve been going through to files to try and figure out where this code would be but since there are so many files in default > bbpress I was hoping to get some direction on where to find the relevant code.
Thanks!
When you enter a forum, a list of Topics is shown, but the table header says “Forum” instead of “Topics”. I have checked the source code and _e(“Forum”, “bbPress”) is used, and probably elsewhere as well.
There does not seem to be a way to properly rename each label in bbPress.1. I think the label is wrong as we list Topics and not Fora
2. Could bbPress not facilitate to rename more labels? Our customer even wants the label to be CATEGORIES rather than even Topics.I know, I could add a JS per page plugin and do a jQuery to renbame, but that ius of course the LAST resort – bad design.
Thanks for any hints to achieve or a fix on bbPress (e.g. adding a filter for certain such areas)
Carsten
I am struggling to implement a plugin / functionality to catch the likes and replies from a source user (giving the like/reply) and notify the destination user (the author of the post) in bbpress, the forum plugin from wordpress.
Are you aware of existing projects implementing this functionality in bbpress (even partially) ?
Which mechanisms / plugins are better to use to trigger actions in the frontend in this case? On the other hand, is it a better approach to put triggers on the database column?
I am more analyzing the database…it has good information, such as user id of the source user, post id. I am talking about the wp_posts table. However, the parent_post is the first post of the topic, so it is not the ierarhical parent post. I need somehow to identify the nested replies from the database, but I dont find the needed information there…
Thank you for your suggestions !
Topic: Error in forum preview
I installed the plugin BBpress and created a forum and two discussions. when I click on the forum preview from WP the url shows my home page. I confirmed the permalinks settings but the problem still exists. What can I do? thank you
Topic: String Translation Issue
Hello! As you can see here string is not translated but into bbpress-it_IT.po is already translated.
This is a theme issue?
https://ibb.co/fePX0H
https://ibb.co/g3WqnxBest regards
Hello,
i would like to know how to make my homepage as a forum. i mean when the user join my website he will directly see the forums. i dont want him to click the forum tab in menu and then join http://www.website.com/forum
like this website : https://www.utehub.com/wordpres version : wordpress 4.9.4 , twent fifteen
bbpress version : 2.5.14I am creating a forum for my club (about 60 members) containing a few forums and sub forums. I would like to have the content of all replies/topics that members create under eacb forum be displayed together. This would be greatly preferred from a user experience standpoint for a small forum.
I can get all topic headings to appear, but then can view only one topic at a time. I have seen sites with this layout, so I’m missing something obvious.
I am using bbPress 2.5.14 with WP 4.9.4. Also using bbPress style pack.
Thanks.
It’s under the title “Forum” in the bar/header; I think is to default for all but I can explain better if you dont understand.
I use the latest bbpress 2.6 RC5. The new feature mention is not working properly.
Whenever a user has email address in the text body, the domain after “@” is considered as mention.
ex: in text body info @ test.com (I use with space because the same case here in forum)
changes to:
and @test is clickable as a mention.
Topic: User Roles – Adding/Renaming
Hello,
I’m trying to rename the current roles as well as ADD new roles. When I add the filter to change the current role name, it doesn’t add the new user role I’ve added. If I remove that code, then the new user role shows up.This is the code I’m using.
//BBpress Custom Roles // function add_new_roles( $bbp_roles ) { /* Add a role called tutor */ $bbp_roles['bbp_lead'] = array( 'name' => 'Community Lead', 'capabilities' => custom_capabilities( 'bbp_lead' ) ); return $bbp_roles; } add_filter( 'bbp_get_dynamic_roles', 'add_new_roles', 1 ); function add_role_caps_filter( $caps, $role ) { /* Only filter for roles we are interested in! */ if( $role == 'bbp_lead' ) $caps = custom_capabilities( $role ); return $caps; } add_filter( 'bbp_get_caps_for_role', 'add_role_caps_filter', 10, 2 ); function custom_capabilities( $role ) { switch ( $role ) { /* Capabilities for 'tutor' role */ case 'bbp_lead': return array( // Primary caps 'spectate' => true, 'participate' => true, 'moderate' => true, 'throttle' => false, 'view_trash' => false, // Forum caps 'publish_forums' => false, 'edit_forums' => false, 'edit_others_forums' => false, 'delete_forums' => false, 'delete_others_forums' => false, 'read_private_forums' => true, 'read_hidden_forums' => true, // Topic caps 'publish_topics' => true, 'edit_topics' => true, 'edit_others_topics' => true, 'delete_topics' => true, 'delete_others_topics' => true, 'read_private_topics' => true, // Reply caps 'publish_replies' => true, 'edit_replies' => true, 'edit_others_replies' => true, 'delete_replies' => true, 'delete_others_replies' => true, 'read_private_replies' => true, // Topic tag caps 'manage_topic_tags' => true, 'edit_topic_tags' => true, 'delete_topic_tags' => true, 'assign_topic_tags' => true, ); break; default : return $role; } } // End BBpress Custom Roles // //BBpress Rename Roles // /* BBPress Renaming Roles */ add_filter( 'bbp_get_dynamic_roles', 'ntwb_bbpress_custom_role_names' ); function ntwb_bbpress_custom_role_names() { return array( // Keymaster bbp_get_keymaster_role() => array( 'name' => 'Administrator', 'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() ) ), // Moderator bbp_get_moderator_role() => array( 'name' => 'Moderator', 'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() ) ), // Participant bbp_get_participant_role() => array( 'name' => 'Member', 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) ), // Spectator bbp_get_spectator_role() => array( 'name' => 'Spectator', 'capabilities' => bbp_get_caps_for_role( bbp_get_spectator_role() ) ), // Blocked bbp_get_blocked_role() => array( 'name' => 'Blocked', 'capabilities' => bbp_get_caps_for_role( bbp_get_blocked_role() ) ));} //BBpress Rename Roles End //