ticket summary owner component _version priority severity milestone type _status workflow _created modified _description _reporter 2484 Marking participants as spam, marks whole Blogs as spam johnjamesjacoby API - Roles/Capabilities omg sweet tea critical 2.8 defect (bug) reopened dev-feedback 2013-11-27T09:49:19Z 2023-11-17T20:25:48Z "If you mark a user as spam in /wp-admin/network/users.php, it will mark each blog as spam, where the user is participant. It happens if ''bbp_allow_global_access()'' is true in a multisite environment. '''The reason seems to be''' In multisite with ''bbp_allow_global_access'' each participant gets [http://bbpress.trac.wordpress.org/browser/tags/2.5/includes/users/capabilities.php#L292 the participant capability] and [http://core.trac.wordpress.org/browser/tags/3.7.1/src/wp-includes/user.php#L858 get_user_meta($user_id)] will return: {{{ [wp_32_capabilities] => Array ( [0] => a:1:{s:15:""bbp_participant"";b:1;} ) }}} Where 32 is the blog id. [http://core.trac.wordpress.org/browser/tags/3.7.1/src/wp-admin/network/users.php#L147 Marking a user as spam in WordPress] calls this: {{{ $blogs = get_blogs_of_user( $val, true ); foreach ( (array) $blogs as $key => $details ) { if ( $details->userblog_id != $current_site->blog_id ) // main blog not a spam ! update_blog_status( $details->userblog_id, 'spam', '1' ); } update_user_status( $val, 'spam', '1' ); }}} And [http://core.trac.wordpress.org/browser/tags/3.7.1/src/wp-includes/user.php#L712 get_blogs_of_user() uses get_user_meta( $user_id )] to get all 'wp_*_capabilities' keys. Resulting in giving back each blog, where the user is participant and updating it as spam: {{{ foreach ( $keys as $key ) { if ( 'capabilities' !== substr( $key, -12 ) ) continue; if ( $wpdb->base_prefix && 0 !== strpos( $key, $wpdb->base_prefix ) ) continue; $blog_id = str_replace( array( $wpdb->base_prefix, '_capabilities' ), '', $key ); [...] }}} Is this a bbPress Bug? It seems not right to me, to mark every blog as spam where the spamming user has any capabilities at all. On the other hand, in WP itself no one you would mark as spam should have capabilities in the first place. Or am I overlooking something? Definitly it's very bad since you can't notice it if you aren't looking into /wp-admin/network/sites.php or visiting the affected blog(s) by yourself." wpdennis 1958 Hierarchical Forum and Category Layout theme Appearance - Theme Compatibility 2.1 omg sweet tea normal 2.8 enhancement new 2012-09-26T04:54:16Z 2019-01-22T04:42:09Z "Topic for reference: http://bbpress.org/forums/topic/hierarchical-forum-and-category-layout/ As discussed, people often want some degree of hierarchy for their theme and right now it would require a completely custom theme. We should help them out. I guess one thing to determine, which would give us a direction to go in, would be what degree of hierarchy should we look to provide? One possible scenario would be what Lynq came up with in his custom theme: http://teamoverpowered.com/forums/ Thoughts?" jaredatch 1962 BBpress does not get the right reply url if you change replies loop args. Tools - Code Improvements 2.1.2 omg sweet tea major Future Release defect (bug) new 2012-10-04T09:54:02Z 2023-11-17T20:14:08Z "Hi, I've modify the replies loop args for display last reply first ('orderby' => 'date', 'order' => 'DSC'); But if I post a new reply, BBpress redirect to the reply URL get by bbp_get_reply_url() function without paying attention to the order defined in the loop. So BBpress get the wrong page for my new reply (the last, instead of the first) and I'm redirect to the last page without my new reply. That's a huge problem because, some one can reorder the replies by another value, by a metavalue for exemple. so the page returned must be calculated according to the display loop used. NB : There are perhaps the same mistake for topics. I hope you can implement that quickly. Thanks in avance..." villagora 2596 Add support for bbPress converter to import attachments API - Importers trunk highest omg sweet tea major Future Release feature request new 2014-05-12T09:04:00Z 2023-11-17T20:25:52Z "It would be great if we could also importing attachments from other forums as part of the import/convert process. There are numerous challenges to implementing this: * Timeouts fetching remote files due to file availability or size * Forward/Backward compat for any future bbPress attachment implementations A couple of ideas to be researched is the [http://make.wordpress.org/core/author/frederickding/ 2013 GSoC] project by Frederick Ding and the WordPress WXR importer, WordPress' [http://wordpress.org/plugins/tumblr-importer/ Tumblr] importer and [http://wp-cli.org WP-CLI] implementations." netweb 1238 Dynamic content doesn't work in IIS 7 Front-end highest omg sweet tea major Future Release (Legacy) task (blessed) new reporter-feedback 2010-01-10T03:30:57Z 2023-11-17T20:25:06Z iis 7 doesn't do well with bbpress dynamic content , on topic or forum pages. this is critical for those who use a windows server with iis 7, hasn;t been tested with iis6 yet! alexandanthony 3362 Admin area updates delete subscriptions on posts. johnjamesjacoby* General - Administration highest omg sweet tea major Under Consideration defect (bug) accepted 2020-04-02T12:35:05Z 2023-11-17T20:13:59Z " I am running the latest 2.6.4 and discovered problem regarding subscriptions: This is before updating topic (post_id:60483) in admin area: {{{ mysql> select * from forum_postmeta where meta_key=""_bbp_subscription"" and post_id=""60483"" ; +---------+---------+-------------------+------------+ | meta_id | post_id | meta_key | meta_value | +---------+---------+-------------------+------------+ | 61987 | 60483 | _bbp_subscription | 4811 | +---------+---------+-------------------+------------+ 1 row in set (0.00 sec) }}} This is after updating the topic (post_id:60483) in admin area: {{{ mysql> select * from forum_postmeta where meta_key=""_bbp_subscription"" and post_id=""60483"" ; Empty set (0.00 sec) }}} The subscription is DELETED after admin changes something and updates a post. " wpturk 3340 Visual Editor and HTML-filtering not working for replays. General 2.6.4 highest omg sweet tea blocker defect (bug) new 2020-02-14T14:20:19Z 2023-11-17T20:25:46Z "Since a while, common users can't replay, if there are any HTML-tags in the contend. The new replay just don't appears. No error message at all. It works as it should, for ""new topics"" of common users and for replays of admin and moderators. Pleas, fix the issue in bbP! And pleas update https://codex.bbpress.org/enable-visual-editor/ to a really working solution. " thomei 3202 import kunena forum version 5.0.11 to bbpress 2.5.14 netweb API - Importers high normal Under Consideration defect (bug) assigned 2018-05-28T08:02:05Z 2019-11-09T19:08:14Z "I am using the bbPress import tool but not work Below is the error we get when running the import tool that is provided in WordPress/bbPress. ******** Erreur de la base de données WordPress : [Table 'joomla.cp724_TagDiscussion' doesn't exist] SELECT convert(TagDiscussion.DiscussionID USING ""utf8mb4"") AS DiscussionID,convert(TagDiscussion.TagID USING ""utf8mb4"") AS TagID,convert(Tag.Name USING ""utf8mb4"") AS Name FROM cp724_TagDiscussion AS TagDiscussion INNER JOIN cp724_Tag AS Tag USING (tagid) LIMIT 0, 100 " simou136 1928 nonrehashed user passwords netweb API - Importers 2.1.2 high normal Future Release defect (bug) new 2012-08-08T15:32:54Z 2012-08-20T01:39:15Z "nonrehashed user passwords in the phpBB user table there is a row named ""user_pass_convert"" - and this must be taken into account it has a value 1 if user password is not fully rehashed it means, that after user posted password, it will be hashed with md5, and only after that compared to the password hash for example - when user first time log in to phpbb after that phpbb was upgraded from 2 to 3 - password is compared in that way (with md5 hash), and after that it is changed to the new password hash from password without md5 and updated in the database, also user_pass_convert is set to 0 now - if forum is updated from 2->3 - and that forum is converted to phpBB - password comparing always will fail temporary fix for that (cause ALL user passwords are nonrehashed - no one logged in) is to put in converters/phpBB.php line $password = md5($password); public function authenticate_pass($password, $serialized_pass) { $password = md5($password); $itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; $pass_array = unserialize($serialized_pass); if (strlen($pass_array['hash']) == 34) { return ($this->_hash_crypt_private($password, $pass_array['hash'], $itoa64) === $pass_array['hash']) ? true : false; } return (md5($password) === $pass_array['hash']) ? true : false; } in that function is check for old style passwords: ""if (strlen($pass_array['hash']) == 34) {"" but passwords are new hashes, and lenght will be 34 symbols, only those hashes will be from phpbbhashfunction(md5(password)) - sou comparing against phpbbhashfunction(password) will always fail, and converted users will not log in " capsx 1852 [Accessibility] Revert loop_topics.php and loop-forums.php back to using data tables in bbt-compat Appearance - Theme Compatibility high major Future Release defect (bug) new 2012-06-15T11:20:30Z 2023-11-17T20:25:56Z "For accessibility, a mixture of the two approaches tables vs. lists would have been the optimum. And maybe that's still possible to do? My suggestion would be this: 1. On the forums overview page, where there are forums, topics in each forum, etc., a table is '''the''' appropriate form to use. It has column headers, and each row consists of a data record AKA a single forum. For this, a data table, semantically a table with appropriate tags, is indeed the correct way to go! Not '''all''' tables are bad per se! 2. Same goes for the listings of topics within each forum. These have column headers, too, and each row tells the story about each topic. A perfectly legal and sanctioned use of tables! 3. The only part where a table is '''not''' appropriate for usage is when displaying a single topic with its replies. The TwentyTen bbPress theme definitely uses a data table semantics for layout purposes here, e. g. grouping a reply header, content, and footer together in a way that is clearly meant for layout. There are no column headers, and not every row tells a story about a single post. Instead, a post spans multiple rows, each with different information. '''This''' is what accessibility folks call layout tables, and these are banned by the W3C and hated passionately by each screen reader user on this planet. Topics and replies lump together in a big spaghetti-like table without a real distinction where one post ends and the next begins. Converting this to more appropriate markup was the '''right''' thing to do. Converting the forums and topics listings, was '''not'''. A list item is a list item, and '''not a column header or table cell'''. In data tables, browsers' accessibility APIs can create correct linkage between a column header and the relating cell down in the table. The user can therefore hear if the number they're hearing is the number of voices, replies, the title or what. If these are done by lists as it is now, there is no way on this planet that this kind of essential linkage can be provided. There is simply no technique to do this. The bbPress support forum uses a '''correct''' combination of data tables for the forum listing and topic listings, and otherwise appropriate markup for a topic and its replies. I strongly request that this be put into the theme-compat of 2.1, or accessibility of bbPress will be '''significantly''' reduced in forum and topic listings!" MarcoZ 3018 Invalid pagination or incorrect page is not giving 404 error Component - Any/All 2.0 high normal Future Release defect (bug) new 2016-11-07T12:45:42Z 2019-02-12T09:45:56Z "Let say there are 28 topics in a forum and 10 are displayed per page. This means page 3 is the last page. If there is somewhere a mistake in the theme or I try to go to /page/4 then I would expect a 404 or so (Core is giving a 404!), but no, I'm just getting the 'Oh bother'. Also some SEO are not so happy about this either as it can create strange loops." casiepa 2338 Can't edit forums when forum count > 4000 Component - Forums 2.1 high normal Future Release defect (bug) new reporter-feedback 2013-05-19T22:14:28Z 2013-05-23T14:50:02Z " I have bbPress installed that has 1 forum for each stock ticker (symbol). I currently have about 4500 forums each dedicated to a single stock. When I go to: Dashboard -> Forums -> All Forums I get: {{{ HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request. }}} using Chrome. Same result when using FireFox, IE, Safari, Opera (all current versions). When I enter the url of the forum I want to edit into the address bar (i.e. https://www.***.com/forums/forum/n/nabd-north-american-building-inc/) and click ""Edit Forum"" in the toolbar, elements of the menu do not work or are missing (see attached image). Accessing any existing forums still works and posting to existing forums is still possible. I have tried everything I can think of, including: 1. Try default themes TwentyTwelve, TwentyEleven. 2. Barebones .htaccess file with only default WordPress section. 3. Moved wp-config.php back to default location (was moved ""up"" a level out of public_html). 4. Deactivated all plugins. 5. Reinstalled bbPress. I did NOT make any configuration changes during the period of this error (except to add more forums). ========================= WordPress Version: 3.5.1 bbPress Version: 2.3.2 Posts: ~24,000 Plugins: 1. Akismet 2. Bad Behavior 3. Configure SMTP 4. Duo Two-Factor Authentication 5. Quform 6. s2Member® Framework 7. Strictly Google Sitemap 8. WordPress Importer 9. WP-reCAPTCHA 10. WP to Twitter 11. Yet Another Related Posts Plugin Thanks" joe.davola 3431 Twenty TwentyTheme Causes bbPress Main Forum Page to Display Text Component - Forums 2.6.6 high critical Awaiting Review defect (bug) new 2021-06-07T13:46:06Z 2023-11-17T20:25:50Z "When the Twenty Twenty them is used and blog posts are set to excerpt, the forums display text instead of the forum posts. I originally contacted the Twenty-Twenty theme creators about the issue. This is their response: https://core.trac.wordpress.org/ticket/53147#comment:16" deborah86 2407 Post Preview Feature Component - Forums trunk high normal Future Release enhancement new 2013-09-03T10:20:37Z 2022-09-29T17:06:58Z "Many of my forum members ask for a preview feature. Especially if the members are using BBcodes in their Posts like and so on. Although you can edit, but with a preview others can not see the faulty, unfinished post. A post preview as a basic feature in bbPress would be great." Morgensonne 3268 Intentionally/permanently archived forum threads should return a 410 status johnjamesjacoby Component - Topics high normal Future Release defect (bug) assigned reporter-feedback 2019-10-31T12:08:23Z 2019-11-09T18:03:26Z See https://meta.trac.wordpress.org/ticket/4458 jonoaldersonwp 2137 Dedicated register/login/lost-pass pages Component - Users 2.1 high normal 2.8 task (blessed) new 2012-12-28T23:58:59Z 2016-05-02T05:46:29Z "It comes up enough where it's worth having the option of letting bbPress manage the sign-up process. We would likely need to: * Add the rewrite rules and tags to the bbPress class. * Loop them in to bbp_parse_query(). * Come up with template tags and _is_ functions for them. * Settings and functions for setting/getting slugs. * Use the existing shortcodes to handle theme compat, similar to other components. Putting in the 2.4 milestone, though a patch could speed this into 2.3." johnjamesjacoby 3580 delete_orphaned_spam_meta() has a bug that causes it to loop forever whenever it runs Extend - Akismet 2.6.9 high major Awaiting Review defect (bug) new has-patch 2023-08-08T09:45:48Z 2024-02-15T07:38:05Z "The {{{delete_orphaned_spam_meta()}}} function inside {{{bbpress/includes/extend/akismet.php}}} will run forever when there are orphaned post meta keys, because the query keeps searching for orphaned post meta keys by batches of 1000 and deleting them. But there is a check to ignore meta keys that do not start with {{{akismet_}}}. What happens then is that, if you have any orphaned post meta keys that do not start with 'akismet_', the method will run forever until the max_execution_time expires, because the query finds the rows, but is unable to delete it. I propose to add the 'akismet_' check into the SQL query, like so: {{{ AND m.meta_key LIKE 'akismet\\_%' }}} And removing the following check: {{{#!php // Skip if not an Akismet key if ( 'akismet_' !== substr( $spam_meta->meta_key, 0, 8 ) ) { continue; } }}} This will prevent the function from looping forever. Also, since this function finds orphaned {{{bbp_}}} post meta too, we may want to add this so that it finds both orphaned Akismet and BBP post metas: {{{ AND m.meta_key LIKE 'akismet\\_%' OR m.meta_key LIKE '\\_bbp\\_%')}}} Here is the final edited code: {{{#!php public function delete_orphaned_spam_meta() { global $wpdb; // Get the deletion limit $delete_limit = $this->get_delete_limit( '_bbp_akismet_delete_spam_orphaned_limit' ); // Default last meta ID $last_meta_id = 0; // Start time (float) $start_time = isset( $_SERVER['REQUEST_TIME_FLOAT'] ) ? (float) $_SERVER['REQUEST_TIME_FLOAT'] : microtime( true ); // Maximum time $max_exec_time = (float) max( ini_get( 'max_execution_time' ) - 5, 3 ); // Setup the query $sql = ""SELECT m.meta_id, m.post_id, m.meta_key FROM {$wpdb->postmeta} as m LEFT JOIN {$wpdb->posts} as p ON m.post_id = p.ID WHERE p.ID IS NULL AND m.meta_id > %d AND (m.meta_key LIKE 'akismet\\_%' OR m.meta_key LIKE '\\_bbp\\_%' ORDER BY m.meta_id LIMIT %d""; // Query loop of topic & reply IDs while ( $spam_meta_results = $wpdb->get_results( $wpdb->prepare( $sql, $last_meta_id, $delete_limit ) ) ) { // Exit loop if no spam IDs if ( empty( $spam_meta_results ) ) { break; } // Reset queries $wpdb->queries = array(); // Reset deleted meta count $spam_meta_deleted = array(); // Loop through each of the metas foreach ( $spam_meta_results as $spam_meta ) { // Skip if not an Akismet key __if ( 'akismet_' !== substr( $spam_meta->meta_key, 0, 8 ) ) { continue; }__ // Delete the meta delete_post_meta( $spam_meta->post_id, $spam_meta->meta_key ); /** * Perform a single action on the single topic/reply ID for * simpler batch processing. * * @param string The current function. * @param int The current topic/reply ID. */ do_action( '_bbp_akismet_batch_delete', __FUNCTION__, $spam_meta ); // Stash the meta ID being deleted $spam_meta_deleted[] = $last_meta_id = $spam_meta->meta_id; } /** * Single action that encompasses all topic/reply IDs after the * delete queries have been run. * * @param int Count of spam meta IDs * @param array Array of spam meta IDs */ do_action( '_bbp_akismet_delete_spam_meta_count', count( $spam_meta_deleted ), $spam_meta_deleted ); // Break if getting close to max_execution_time. if ( ( microtime( true ) - $start_time ) > $max_exec_time ) { break; } } // Maybe optimize $this->maybe_optimize_postmeta(); } }}} " terresquall 3025 Hide bbPress/BuddyPress group forums from the forum list unless the viewer is a member of the group Extend - BuddyPress high normal Future Release enhancement new 2016-11-26T23:31:46Z 2017-01-23T17:54:07Z "I would like to have the option to hide group forums from the forum list unless the individual concerned is a member of that group. I'd like there to be an option for forum visibility for each of the types of groups in BuddyPress, in other words I'd like To be able to individually control whether a public or a private group forum shows up in the forum list." Venutius 1565 HTTPS URLs aren't generated as expected Front-end 1.1-alpha high major Future Release (Legacy) defect (bug) new 2011-06-22T18:54:39Z 2023-11-17T20:25:02Z "bbPress doesn't generate HTTPS URLs if page is visited over HTTPS and SSL is not forced. This is very different that in WordPress where in cases like this all internal URLs generated by WordPress core functions are over HTTPS. You can compare https://wordpress.org/news/ and https://wordpress.org/support/ . As you can see, at the first page all URLs are over HTTPS except those that are hardcoded. This means that even if user visits page over HTTPS, bbPress will still generate HTTP URLs which makes it even worse than with plain HTTP. Yesterdays issue over at wp.org shows that this is a serious thing and this should be fixed no matter what is a future of bbPress standalone since its still heavily used on wordpress.(org|com). By inspecting the code, I believe that this will be solved with a change in bb_get_uri() function since URL generation depends on this. After [https://bbpress.trac.wordpress.org/browser/trunk/bb-includes/functions.bb-core.php?rev=2451#L564 this logic] there should be elseif function with a [https://core.trac.wordpress.org/browser/trunk/wp-includes/link-template.php?rev=18254#L2106 code] from WordPress. I can't test this right now (and create a patch) so take that into account. Related ticket: #715" dimadin 2434 Page Break not Working when Nested Replies Enabled (2.4) jmdodd General trunk high major Future Release defect (bug) new 2013-09-23T19:13:51Z 2023-11-17T20:25:08Z "The newly released Nested Replies feature disables the page break functionality. While I have set it to display 15 posts per page, it is showing all the posts on the same page without any breaks. " singhnsk 3592 "The closing tag """" is not properly positioned" General trunk high normal Awaiting Review defect (bug) new has-patch 2024-03-26T07:26:13Z 2024-03-28T09:13:28Z "I have submitted a pull request. Could you please review it by checking the URL provided and update your response accordingly? https://github.com/bbpress/bbPress/pull/15" utsav72640 3225 Move all data from postmeta into own database tables General trunk high major Future Release enhancement reopened 2018-11-01T09:01:36Z 2024-03-22T17:33:08Z "bbPress has a great potential to be a great forum software, but that is not going to happen until bbPress can be scaled to work with large forums, and allow for some more complex features to work without the burden of bad database design. bbPress stores all the data into the postmeta table that can't be indexed and that can't be used in complex queries without the performance hit. Yes, it works fine for the rather simple queries bbPress has now (well, that is not true completely, there so many reports of imports from other forums failing, or repair operations failing), but if you need to make queries that will get latest posts for a period of time, in specific forums, based on the last activity, and run it in forum with 250.000 or more topics, that can be very slow (query execution can take 5 or more seconds, even on fast servers). So, I have created the proposal database schema using 8 database tables based on the metadata currently stored in postmeta, with few more columns added, that can be discussed and that should be implemented into the bbPress core. I was thinking about building a plugin for that, but there is no way to easily replace core queries bbPress uses with the plugin, or replace complete import system. Database schema needs to be in the core. Here is the GitHub repository with schema and few for starters queries to load the tables: [https://github.com/dev4press/db-updates-for-bbpress]." GDragoN 3478 Don't have a contribution guideline on github General trunk high normal Awaiting Review feature request new needs-docs 2022-08-10T16:07:46Z 2022-08-10T16:07:46Z "I think there should be a dedicated contribution guideline doc in github. So that new developers can start contributing easily. Thanks" rafiahmedd 2630 Closing a private topic changes status back to public General - Administration 2.5.4 high normal 2.8 defect (bug) new 2014-06-24T18:17:24Z 2014-09-09T19:27:35Z "So I'm seeing a few scenarios where closing/opening a topic for replies resets the topic visibility, and vice versa. Scenario 1: 1. Edit a topic, and change visibility to private. 2. On the front end, click ""Close"" for the topic. 3. View the topic in the dashboard, and you can see it's been '''reset to public.''' Scenario 2: 1. Click ""Close"" on the front end for a topic OR change status to closed in the dashboard. 2. Edit the topic in the dashboard, and set ""Visibility"" to ""Private"" 3. After clicking update, the Visibility will be private, but the status will '''reset to open''' Scenario 3: 1. Editing a topic in the dashboard, change visibility to ""Private"" 2. Change status to ""Closed"" from the post editor screen. 3. After clicking update, '''the post status remains open''' We often use private topics for our team to continue a conversation with users outside of public view. There are times when we would also like to close the discussion. This bug prevents both from happening on the same topic. " alexander.rohmann 3425 Conflict with All in One SEO General - Administration 2.6.6 high major Awaiting Review defect (bug) new 2021-03-16T14:55:28Z 2023-11-17T20:14:03Z "bbPress needs to be activated before All in One SEO. If you activate it after All in One SEO, the menu links don't show up on the dashboard (not sure if the plugin itself still works). I'm not sure what future updates to either plugin while both are installed will do to bbPress, but please test that also. **To Replicate:** Activate All in One SEO and then activate bbPress. Menu links will not show on dashboard. Deactivate and reactivate All in One SEO and the bbPress menu links will appear." treehousecreativeco 960 Users list improvements General - Administration high major Future Release (Legacy) enhancement new 2008-09-03T17:42:46Z 2011-09-20T22:31:35Z "I think it is good idea to extend users list with * topics count * posts count * mass deleting function * sorting by one ""field""" wiseacre 1513 Reduce amount of topic/reply code duplication johnjamesjacoby General - Administration high normal Future Release task (blessed) new 2011-05-09T09:34:49Z 2015-03-24T08:36:51Z "In the process of creating the bbPress plugins topics and replies, there ended up to be quite a bit of code duplication needed between the two post types. A sweep should be done to limit all post meta queries down to 1 definitive set of functions that can handle both topics and replies, with (possibly deprecated) wrapper functions to handle the specifics for each post type." johnjamesjacoby 3582 Responsive design for bbpress.org Site - bbPress.org high major Awaiting Review defect (bug) new 2023-09-01T09:27:51Z 2024-02-24T03:50:57Z "I have seen design does not look good in responsive, Some text is overriding the hero image and some white space showing on the very small screen. URL : https://bbpress.org/ Reference video => https://share.cleanshot.com/7sQvnVQ3HpJDPHnb8yRR Thanks!!" rinkalpagdar 2664 Repair functions don't reset the post cache Tools high normal 2.8 enhancement new 2014-07-22T14:49:33Z 2017-06-19T14:02:15Z "After a considerable amount of head scratching, I've realised that the repair functions do not reset the post cache, which I think they ideally should when making direct changes to the database via `$wpdb->query`. In my particular situation this was necessary for recalculating reply counts as the site that I'm working on is already live (we have migrated data from a bbPress 1 installation). Alternatively, perhaps the repair functions could be rewritten to work with loops and `update_post_meta()` etc. This would make them significantly slower but at the same time safer and less memory intensive. For reference, I'm referring to the repair functions located in: `includes/admin/tools.php`" jacklenox 3084 PHPUnit 6 compatibility netweb Tools - Build high normal Future Release task (blessed) new 2017-03-10T04:29:00Z 2017-06-05T17:19:14Z "Via #WP39822 PHPUnit no longer supports `PHPUnit_Framework_TestCase` as the base class. https://github.com/sebastianbergmann/phpunit/blob/6.0/ChangeLog-6.0.md#600---2017-02-03 {{{ $ phpunit Installing... Running as single site... To run multisite, use -c tests/phpunit/multisite.xml PHP Fatal error: Class 'PHPUnit_Framework_TestCase' not found in /Users/miyauchi/wp-core/trunk/tests/phpunit/includes/testcase.php on line 15 }}} I wrote aliases for it. It looks woking fine with phpunit 5.6 and phpunit 6. Related: https://github.com/wp-cli/wp-cli/issues/3802" netweb 3318 "Add rel=""nofollow ugc"" to links in topics and replies" API - Formatting trunk high major enhancement reopened dev-feedback 2020-01-12T17:56:50Z 2021-01-03T11:31:32Z Currently bbpress adds `rel=nofollow` to links in topics and replies. Following recent changes referenced at https://webmasters.googleblog.com/2019/09/evolving-nofollow-new-ways-to-identify.html and the precedent by WordPress Core at https://core.trac.wordpress.org/ticket/48022 we should add to the `rel` attribute the additional `ugc` value to indicate User-Generated Content. Attached is a patch to do just this based in part on WordPress Core's implementation. diddledani 3339 Text correction changes casiepa General high normal defect (bug) assigned 2020-02-14T12:32:19Z 2024-03-26T06:18:39Z Replace Text correction. utsav72640 2649 Repair tools should also repair/recount sub forum count meta Tools trunk normal major defect (bug) reopened 2014-07-04T08:13:08Z 2019-08-10T14:11:35Z "Currently the repair tools do not repair/recount `_bbp_forum_subforum_count` counts. To ensure the accuracy/integrity of our forum meta we should do this. The most common occurrence of forums not having this meta data is if the forums were imported. " netweb 3457 bbp_get_total_users is wrong on multisite API normal normal Awaiting Review defect (bug) new 2022-04-07T03:24:59Z 2024-03-17T13:08:21Z "bbp_get_total_users returns the total number of use4rs in the wordpress database. But this is extremely confusing on multisite as this is not the actual number of users on the site. Why not use: $user_count = count_users(); return apply_filters( 'bbp_get_total_users', (int) $user_count['total_users'] ); This would lead to a much more logical number that does not confuse local administrators " shawfactor 3436 register_meta() calls should use 'object_subtype' argument API 2.6.0 normal normal Awaiting Review defect (bug) new has-patch 2021-09-22T20:39:14Z 2024-02-24T03:51:16Z "bbPress registers various meta keys, but doesn't set the 'object_subtype' argument: https://bbpress.trac.wordpress.org/browser/branches/2.6/src/bbpress.php?marks=778-787#L768 Currently, this means any post that is published will receive the following meta keys regardless of bbPress post type: - _bbp_topic_count - _bbp_reply_count - _bbp_total_topic_count - _bbp_total_reply_count - _bbp_voice_count - _bbp_anonymous_reply_count - _bbp_topic_count_hidden - _bbp_reply_count_hidden - _bbp_forum_subforum_count I've attached a patch that only registers meta keys for the correct bbPress forum and topic post types." r-a-y 3578 `$topic_author` may be incorrect after the 'bbp_new_topic_pre_insert' filter API - Actions/Filters normal minor Awaiting Review defect (bug) new 2023-08-03T03:13:13Z 2023-08-03T03:19:13Z "If you use the `bbp_new_topic_pre_insert` filter to change the authorship of a post (See https://meta.trac.wordpress.org/ticket/6839 for a use-case) the following `bbp_new_topic` hook will fire with the incorrect data passed. This is because the hook uses the data from before the filter was run. As a workaround, one can simply use `bbp_get_topic_author_id( $topic_id )` instead of the passed `$topic_author` of the function. Note: This applies equally to replies. I've set the severity to minor, as although it's not ideal, this is not overly unexpected." dd32 3401 Subscriptions still loading from user_meta johnjamesjacoby API - Engagements 2.6.5 normal normal Under Consideration defect (bug) assigned reporter-feedback 2020-09-29T11:03:25Z 2023-11-17T20:10:11Z "We followed the forum tools data update for subscriptions by copying them from user_meta to post_meta but when debugging the code we find that it still loads the subscriptions from the user_meta table. And when running the bbp_get_user_forum_subscriptions at the forum user profile page the function get_user_option_key in common/engagements.php returns the wrong key for forum_subscriptions since $object_id is 0. Instead it returns the topic_subscriptions key and later on then returns no forum subscriptions since it only gets topic_subscriptions in the return value." Dermes 1816 feed title starts with the author and so you can't sort by title in feed reader API - Feeds 1.1 normal normal Future Release (Legacy) defect (bug) new has-patch 2012-04-24T08:55:29Z 2017-01-11T20:07:26Z "The topic title in bbpress rss feeds is “(author) on (title)” (or similar) which is really bad, because I can’t sort on title anymore. This is sort by author, because the author is the first string in the title. And it is redundant, because there is a author field which I can see in my feed reader. Maybe you can change this to “(title) – (author)” (or similar) - but with title in front, for sorting on title." zodiac1978 2292 RSS feeds missing Some HTTP Headers API - Feeds 2.2.3 normal normal Future Release enhancement new 2013-04-07T11:24:36Z 2023-11-17T20:10:13Z bbPress feed HTTP headers doesn't have some needed headers, like Last-Modified & X-Pingback. alex-ye 3107 Parenthesis `(` / `)` in URLs causes unintended duplicate links johnjamesjacoby API - Formatting 2.0 normal normal Future Release defect (bug) new needs-unit-tests 2017-05-22T04:08:44Z 2017-05-22T17:51:59Z "In the support forums, if you use this: * `https://msdn.microsoft.com/en-us/library/ms530820(v=vs.85).aspx` It escapes to this: * `https://msdn.microsoft.com/en-us/library/ms530820(v=vs.85).aspx` Originall reported by @cybr in Slack #meta https://wordpress.slack.com/archives/C02QB8GMM/p1495374031432056 ---- A standard WordPress post results in the correct formatting: * `https://msdn.microsoft.com/en-us/library/ms530820(v=vs.85).aspx` When looking closer bbPress in fact is turning it into two links: * `` * and * `https://msdn.microsoft.com/en-us/library/ms530820(v=vs.85).aspx` I suspect the parenthesis might be getting tripped up in `bbp_make_clickable()`" netweb 2357 Design Crashes! - Li button issue - Editor not filtering improper HTML usage. API - Formatting 2.1 normal major Future Release idea new needs-unit-tests 2013-06-22T06:43:43Z 2018-03-09T19:16:37Z "When I create a topic or reply for a topic, if I click ""li"" button without ""ul"" or ""ol"" and submit the whole design crashes. When the participant user unknowingly do this this will be a problem. Then I disabled fancy editor and also tried
  • test
  • same thing happens. The design crashes. It shows if the end user gives improper or illogical html syntax within the content box the design breaks." Pebbleontheshore 2089 BuddyPress: bbPress1 importer doesn't check BP group status netweb API - Importers 2.2 normal major Future Release defect (bug) new has-patch 2012-12-07T23:38:52Z 2015-05-27T08:38:47Z "The bbPress1 importer doesn't check to see what the BP group status is when it imports the forum. So, the forum visibility for a private or hidden BP group forum will be imported as 'Public'. After importing, if you navigate to a BP user's ""Forums > Topics Started"" or ""Forums > Replies Created"", you will be able to view private and hidden forum items." r-a-y 2293 Group forums not working correctly netweb API - Importers trunk normal normal Future Release defect (bug) new reporter-feedback 2013-04-08T16:40:26Z 2015-03-23T23:27:34Z "It looks like the issue can be created by: 1. Converting my vbulletin database to bbpress (2,000 users, 100k topics) 2. Turning on buddypress 3. Make a new parent forum for the groups. ( Usually called it “The Nation”) 4. Select group forums to be placed in “The Nation” in the buddypress options 5. Create 2 groups. 6. Move/create topic in each group. You will see each group will share the same topics. If I make a new group, that group will have all the topics of the previous groups. It’s not duplicating the topics, but rather the group forums just contain every thread from other group forums. I have been testing everything for months with brand new installs, converting my database over several times with each release. The issue is consistent no matter which version. I’d be happy to work with someone so that we can figure out the issue. BBpress 2.3-rc1 Buddypress 2.7 beta 2 Wordpress 3.5.1 Multi site Topic is also posted on the buddypress trac here: http://buddypress.trac.wordpress.org/ticket/4886#comment:4 I’m not sure whether or not it’s a bbpress issue or a buddypress issue and I keep getting sent all over the place." limitx3m 2941 Repair Tool notices should use WP's notices error, warning, success color scheme API - Importers normal normal Future Release defect (bug) new 2016-05-02T08:55:10Z 2016-05-02T09:07:21Z "[[Image(https://cldup.com/L7rjQ7Zk8Q.png)]] [[Image(https://cldup.com/k0NRI7HGDY.png)]] Currently bbPress only supports `failed` and `success` statuses returned for each repair tool, that said, both failed and success both use `#46b450` green for the left border notice highlight. The notices should reflect existing WordPress notices color scheme via [https://core.trac.wordpress.org/browser/trunk/src/wp-admin/css/common.css#L1291 /wp-admin/css/common.css#L1291] {{{ #!css .notice-success, div.updated { border-left-color: #46b450; } .notice-success.notice-alt { background-color: #ecf7ed; } .notice-warning { border-left-color: #ffb900; } .notice-warning.notice-alt { background-color: #fff8e5; } .notice-error, div.error { border-left-color: #dc3232; } .notice-error.notice-alt { background-color: #fbeaea; } .notice-info { border-left-color: #00a0d2; } .notice-info.notice-alt { background-color: #e5f5fa; } }}}" netweb 3102 Reset forum showing a failed for Deleting Conversion Table API - Importers trunk normal normal Future Release defect (bug) new 2017-04-14T08:49:01Z 2017-04-14T09:33:59Z "bbPress 2.6-Beta-2 I only created very few topics and replies, but a forum reset seemed the fastest way to get back to a clean install. I was surprised to see a 'Failed' in the list. I suppose the message is because I have never done any conversion to bbPress so probably some tables do not exist, but still, seeing a 'Failed' for me means that something went wrong. Is this intended ?" casiepa 2839 Allow importers to run multiple times and not import duplicates API - Importers normal normal Future Release enhancement new 2015-08-06T07:06:34Z 2016-05-02T07:56:26Z "Many of the WordPress importers have the optional ability to ignore duplicates so the importer can be run multiple times. Various performance issues will arise from adding support for this, though as it would be optional you would only set this option for the 2nd and subsequent import passes, the benefits for large imports should negate many of these issues." netweb 3151 Continue support for importing from phpBB 3.0 ? API - Importers trunk normal normal Future Release enhancement new 2017-08-21T05:48:06Z 2017-08-21T07:28:20Z "By the looks of it, support for phpBB 3.0 was dropped in https://bbpress.trac.wordpress.org/ticket/2716 For the most part, the phpBB 3.1 script works for 3.0, except for some minor changes to the field mapping. phpBB 3.0 support could be continued by adding an extra convertor which extends the `phpBB` class and which just overloads the `setup_globals()` method with the phpBB 3.0 mappings. Unfortunately, the whole method would have to be overloaded as the `field_map` array does not use keys, so we can't selectively overload certain arrays keys or unset a few which are not needed. If there is any support for this proposal, I'm happy to provide a patch." jrf 3200 Converters: Enable incremental conversion started from a date API - Importers normal normal 2.8 enhancement new 2018-05-25T05:52:59Z 2018-05-25T12:53:46Z "Not every site is suitable for a 'big bang' or can afford some days of not being online. bbPress converters should be able to perform a first full import and then an incremental one starting from a specific date/time after the new environment has been validated." casiepa 2756 Drupal Advanced Forums Import for bbpress API - Importers normal normal Future Release enhancement new 2015-02-09T17:12:21Z 2024-02-12T17:35:09Z "I was just wondering if there was any timeframe fo the Drupal Advanced Forums for bbpress. I have a site that's Drupal 7 and I really need to convert it to Drupal. There are far to many users and forums to do it manually, and I'm not sure how else to do it after hours of research. " dadadmin 2420 PHPFusion 7.x Forum Import Template netweb API - Importers 2.3.2 normal normal Future Release enhancement new 2013-09-10T09:40:04Z 2015-03-23T15:45:47Z "Introduce Forum Importer template for use with importing from PHPFusion v7.x ​​​​​​http://codex.bbpress.org/import-forums/phpfusion '''Topic Section''' Needs SQL JOIN/WHERE clause defined for {{{_posts}}} & {{{_threads}}} table join for: Topic Content -> 'post_content', Topic Author IP -> '_bbp_author_ip' Topic Dates -> 'post_date', 'post_date_gmt', 'post_modified', 'post_modified_gmt' & '_bbp_last_active_time' '''Reply Section''' Needs SQL JOIN/WHERE clause defined for {{{_posts}}} & {{{_threads}}} table join for: Reply Title -> 'post_title' Reply Slug -> 'post_name' ''If you want to have play with the SQL related to this or are looking to import from PHPFusion drop a note on this ticket and I will send you the SQL Tables with some sample data.''" netweb 2784 Phorum importer netweb API - Importers 2.5 normal normal Under Consideration enhancement assigned dev-feedback 2015-04-06T14:49:49Z 2019-11-09T19:08:37Z "First off I would like to say thank you for bbPress. I’m trying to redirect all my old Phorum Url’s to the new bbpress url’s. Is this built into the migration script? If not any suggestions? I’m transferring a large board and do not want to lose all the redirects. Can the user passwords be imported from Phorum? On the import script I noticed the user names are prefixed. Where would I change this in the script to remove the prefix. Thank you " vinow 1888 Possible bbPress1 converter improvement API - Importers 2.1 normal normal Future Release enhancement new 2012-07-08T21:21:30Z 2013-09-21T17:09:07Z I think we can speed up the bbPress1 importer pretty dramatically. The topic query is really slow because it joins the topics and posts tables. If we loop through posts and manually checked the post position for 0 or 1 as a topic, we can differentiate between topics and replies converter-side instead of query-side. johnjamesjacoby 2940 Provide more documentation to users regarding the supported versions of importers API - Importers normal normal Future Release enhancement new 2016-05-02T07:53:47Z 2016-05-03T13:17:53Z "Via https://bbpress.org/forums/topic/suggest-import-version-numbers/ A couple of solutions: * Explicitly name each of the importer files based on the source forum version `phpBB30.php`, `phpBB31.php`, `phpBB32.php` etc * Include more detailed documentation on the versions of the forums supported by each imported in the contextual help screen." netweb 2897 Table wp_bbp_converter_translator should be dropped after a successful import API - Importers trunk normal normal Future Release enhancement new 2015-12-10T22:46:43Z 2016-05-02T08:42:32Z That table contains a load of data that is useless after the import process completes successfully. That should be checked at the end of the process and automatically dropped. beerallica 2942 Update converter import color scheme to match modern wp colours API - Importers normal normal Future Release enhancement new 2016-05-02T09:16:54Z 2024-01-26T12:53:39Z "Current: [[Image(https://cldup.com/up8NYZQ0fS.png)]] Proposed: [[Image(https://cldup.com/oQWteafDXq.png)]] Related: See the WordPress styleguide https://github.com/helen/wp-style-guide/issues/14 and [https://github.com/bueltge/WordPress-Admin-Style/blob/master/assets/screenshot-4.png screenshot-4.png]" netweb 3144 User Import: Update existing users instead of inserting as new johnjamesjacoby API - Importers trunk normal normal 2.8 enhancement new dev-feedback 2017-08-19T03:30:44Z 2018-04-23T04:10:48Z "If a user is being imported with the same user name and email address as an existing user in the WP install, we can safely presume it is the same user and update the user account instead of inserting a new one. Patch included. The second patch build onto the first: If a user name changes during the import because of the WP user name sanitization, use the original user name as the display name for the user if none was set previously." jrf 2603 WP Symposium importer for bbPress netweb API - Importers trunk normal normal Future Release enhancement new 2014-05-23T09:16:44Z 2014-09-20T03:09:53Z "WP Symposium v14.x Importer for bbPress http://codex.bbpress.org/import-forums/wp-symposium/" netweb 2422 e107 v2.x Forum Import Template netweb API - Importers 2.3.2 normal normal Future Release enhancement new 2013-09-10T09:41:14Z 2013-11-15T03:19:44Z "Introduce Forum Importer template for use with importing from e107 v2.x e107 v2.x is still in early Alpha at the time this was created so much might change before v2.x is released. ​​​​​​http://codex.bbpress.org/import-forums/e107 '''Forum Section''' * Forum Parent -> '_bbp_forum_parent_id' * uses {{{e107v2_forum.forum_parent}}} AND {{{e107v2_forum.forum_sub}}} to determine heirarchy '''Topic Section''' * Topic Content -> 'post_content', * Needs SQL JOIN/WHERE clause defined '''Reply Section''' * Reply ID -> '_bbp_post_id' * Needs SQL FROM EXPRESSION defined to only include replies * Reply Title -> 'post_title' * Needs SQL JOIN/WHERE clause defined * Reply Slug -> 'post_name' * Needs SQL JOIN/WHERE clause defined * Reply Author IP -> '_bbp_author_ip' * Needs callback method to convert IPv6 -> IPv4 ''If you want to have play with the SQL related to this or are looking to import from e107 v2.x drop a note on this ticket and I will send you the SQL Tables with some sample data.''" netweb 2440 vBulletin v5.x Forum Import Template netweb API - Importers trunk normal normal Future Release enhancement new dev-feedback 2013-09-24T09:20:57Z 2014-09-20T03:09:53Z "Introduce Forum Importer template for use with importing from vBulletin v5.x ​​​​​​http://codex.bbpress.org/import-forums/vbulletin Working: Categories, Forums, Topics, Topic Tags, Replies, Comments & Users Partial (needs testing): Custom BBCode for Topic & Reply Content Not Working Yet: User Passwords '''NOTES:''' Due to the structure of vBulletin v5.x database schema an additional importer depth 'comment' was added to the existing 'forum', 'topic', 'reply' & 'user' sections in {{{converter.php}}} to import 'comments' to 'replies' (hierarchal replies) Attached is {{{vBulletin5.php}}} and {{{converter-vb5.php}}} Due to complexity of the SQL statements in the 'reply' & 'comment' sections of {{{vBulletin5.php}}} your vBulletin database must not have a table prefix. Performance of this converter will also need to be taken into account when using this importer. Huge hattip to Nick Croft (@Nick_theGeek) from copyblogger.com " netweb 3245 Update/Replace NBBC Parser API - Importers normal normal 2.8 idea new 2019-01-25T20:06:06Z 2019-04-18T19:55:57Z "The current BBCode parser used by the Converter tool is a fork of the original NBBC parser that's been abandoned for a number of years. That bbPress fork is currently maintained here: https://github.com/bbpress/NBBC The fine folks over at Vanilla Forums have painstakingly rewritten NBBC using modern coding standards, including a PHPUnit based testing suite. See: https://github.com/vanilla/nbbc I believe it would be prudent to consider updating the internal parser to this more modern equivalent, with the end goal of deleting the bbPress maintained fork. The BSD v2 license is more permissible, hence compatible, with our GPL. The minimum version of PHP required for the Vanilla rewrite is PHP 5.4." johnjamesjacoby 3392 Tool execution removes the single forums from the forum overview. johnjamesjacoby API - Installation/Upgrade normal normal Under Consideration defect (bug) assigned has-patch 2020-08-17T04:42:41Z 2020-12-01T07:06:12Z "I run all tools of bbPress together. (WP Dashboard -> Menu -> Tools -> Forums) After this, on the forum overview (http://mydomain.com/forums/) there are only the categories shown, not the single forums inside like before. Should I make screenshots of this or did I explain it good enough?" peterkueger 2755 Banning johnjamesjacoby API - Moderation normal normal Under Consideration defect (bug) assigned dev-feedback 2015-02-09T00:37:23Z 2019-11-09T19:12:12Z "I saw a review of the plugin [https://wordpress.org/plugins/thoughtful-comments/ Thoughtful Comments] on [http://wptavern.com/thoughtful-comments-plugin-adds-comment-moderation-links-to-the-frontend-of-wordpress WP Tavern] A couple of the capabilities stood out that we currently do not offer, but could: * Delete and Ban IP * Delete Thread and Ban IP When spamming a topic or reply we could add the IP to the banned list, though I think this might be ""too heavy handed"" behaviour by default. Thinking a link for moderators/keymasters (maybe only keymasters) under the IP address of the topic/reply to ban said IP. Clicking said link would ban the IP and change all topic/reply statuses to spam. " netweb 3353 Template notice not shown when a forum post is moderated API - Moderation 2.6.0 normal normal Awaiting Review defect (bug) new has-patch 2020-03-10T01:19:22Z 2021-01-03T09:25:42Z "Related: #3349, #3352 When a forum post is auto-moderated (a.k.a. post status is `pending`), the user is not informed as to why the forum post failed to post. It just looks like the page refreshed. Looks like this issue has been this way since v2.1.0, but hasn't really surfaced until now due to how the blog comment moderation settings are now inherited in v2.6.0. To duplicate: 1. When logged-in as a regular user, attempt to create a forum post with two links on separate lines: - * As a forum reply to a topic in any forum (BuddyPress group or regular forum) - * As a forum topic in a BuddyPress group forum 2. Submit the form and you'll see no notice or forum post. For regular forum topics that are moderated (those not connected to a BuddyPress group forum), a notice **does** show though. ---- There are two problems: 1. When `wp_insert_post()` is used in the post handlers, a `pending` post is still considered successful and no error checks are added. 2. When redirection occurs after the post is created (such as for BuddyPress group forums), the template notice will not persist because it's only meant for the initial pageload. ---- The attached patch fixes this for forum replies. There is one issue though; the template notice is displayed in the form and not above the fold: [[Image(https://i.postimg.cc/HxX5HkhK/mod-reply-notice.png)]] The notice should probably show up above the fold like the other template notices. I haven't had time to look into the BuddyPress group topic problem yet, but I'll look into it soon. " r-a-y 2660 bbpress Discussion Settings? API - Moderation 2.5.4 normal minor Future Release defect (bug) new 2014-07-21T01:27:12Z 2024-02-21T19:32:11Z "I don't know if this is a bug or bbpress just don't use the rules within Discussion Settings of wordpress. For example, ""Comment Moderation"" works perfectly and set the user reply in the forum to pending instead of public if one of the keyword is posted. But if i want to do this: '''Before a comment appears''' Comment must be manually approved Comment author must have a previously approved comment The forum would set the reply to public even when those rules are applied?" echiomega 3365 variable mismatch on topic split johnjamesjacoby API - Moderation trunk normal normal Under Consideration defect (bug) assigned 2020-04-08T17:37:41Z 2021-01-12T11:24:14Z "With the plugin 'theme my login' enabled, splitting a topic causes an error 'A variable mismatch has been detected' Theme my login support state : I’d suggest filing a bug report with bbPress. The issue is that TML registers ‘action’ as a public query variable with WP. WP has a check in WP::parse_request(), which ensures that all GET and POST values of public query variables match. If they don’t, it dies with the error message you are seeing. For whatever reason, bbPress uses a different action key depending on GET/POST context. In this specific instance, the GET value of ‘action’ is ‘split’. However, the POST value (set via hidden field in the form) is ‘bbp-split-topic’. This difference is causing the condition described above. In code: {{{#!php 0, 'link_before' => '', 'link_after' => '', 'split_text' => esc_html__( 'Split', 'bbpress' ), 'split_title' => esc_attr__( 'Split the topic from this reply', 'bbpress' ) ), 'get_topic_split_link' ); // Get IDs $reply_id = bbp_get_reply_id( $r['id'] ); $topic_id = bbp_get_reply_topic_id( $reply_id ); // Bail if no reply/topic ID, or user cannot moderate if ( empty( $reply_id ) || empty( $topic_id ) || ! current_user_can( 'moderate', $topic_id ) ) { return; } $uri = add_query_arg( array( 'action' => 'bbp-split-topic', 'reply_id' => $reply_id ), bbp_get_topic_edit_url( $topic_id ) ); $retval = $r['link_before'] . '' . $r['split_text'] . '' . $r['link_after']; // Filter & return return apply_filters( 'rew_get_topic_split_link', $retval, $r, $args ); } add_filter ('bbp_get_topic_split_link', 'rew_get_topic_split_link' , 10 , 3) ; function rew_is_topic_split() { // Assume false $retval = false; // Check topic edit and GET params if ( bbp_is_topic_edit() && ! empty( $_GET['action'] ) && ( 'bbp-split-topic' === $_GET['action'] ) ) { $retval = true; } // Filter & return return (bool) apply_filters( 'rew_is_topic_split', $retval ); } add_filter ('bbp_is_topic_split' , 'rew_is_topic_split' ) ; }}} " Robin W 2908 Add template and functions to allow viewing topics and replies by author IP address. netweb API - Moderation normal normal Future Release enhancement assigned 2016-01-26T09:47:10Z 2018-03-09T23:49:05Z "bbPress 1.x has this ability, bbPress 2.x currently does not, I think we should look into adding it. For moderators viewing posts (topics and replies) by IP address is an excellent way to check for duplicate accounts, impersonation, sock puppetry, astroturfing etc. The following pull request looks to implement this functionality via a plugin for the i18n forums: * https://github.com/bbpress/wporg-plugins/pull/10/files " netweb 3352 Consider creating separate moderation settings API - Moderation 2.6.0 normal normal Awaiting Review idea new dev-feedback 2020-03-09T19:58:37Z 2023-06-04T20:52:14Z "Blog comment moderation settings such as link limit and word moderatioon are now inherited in bbPress 2.6 (see #2861, #3266). However, by default, WordPress sets the comment link limit to 2. Meaning if a user enters in two or more links, their forum post is held for moderation. This number is way too low for usage in forums. When combined with #3349, this can be a big problem. We're currently working around this by using the `'bbp_bypass_check_for_moderation'` filter, but some sites might not be aware of this change. IMO, a forum post is different enough from a blog comment to have separate moderation settings. Especially since forum posts are mostly for logged-in users and blog comments are mostly for anonymous users. Would be interesting to hear feedback from others." r-a-y 2325 bbPress Permalink Bug with Multisite Sub Site network users API - Rewrite Rules 2.1 normal normal Future Release enhancement new 2013-05-04T16:53:25Z 2013-11-23T11:20:49Z "Hi - i'm pretty sure i found a bug with bbPress 2.3.1 with respect to permalinks on a multisite network sub site ... accordingly, when i have a user that is not subscribed per se to a sub site but is a subscriber on the network, when that user tries to login to the sub site running bbPress, the forum permalinks break yet the other post permalinks are fine ... the forum permalinks look normal on hover-over but when clicked on i get 404 error message and those messages seem to show a double sub site inserted -> e.g., the correct link would be site.com/sub-site01/forums/forum/topic/my-topic ... yet the 404 error messages show site.com/sub-site01/sub-site01/forums/forum/topic/my-topic ... i had the default role for the forum settings to be ""participant"" but even when i changed that role to ""blocked"", the network user not subscribed to sub site still gets the forum 404 messages ... this is strange because a public person, not registered on the network at all, can click on forum links and they resolve correctly ... and if other users log in to the sub site who are registered on that sub site, they too can follow all forum links ... my understanding about MultiSite Networks and Users is that all users on a network, regardless of status, when they try to login to any other sub site, inherit the ""Subscriber"" role at most ... thus i think bbPress is introducing somekind of conflict when it sees a user is not registered with the site but then does not give that person the subscriber role hence the broken forum permalinks ..??.. cordially, chuck scott" chuckingit 2069 Anonymous users can always spectate API - Roles/Capabilities 2.2.2 normal normal Future Release defect (bug) reopened 2012-11-26T20:59:33Z 2013-11-07T01:21:55Z "The spectate capability is not useful because anonymous users have it implicitly. Blocked users lose all forum access (including viewing) but can again read public forums after logging out. In addition to this nonsensical anonymous > blocked behavior, the inconsistent handing of the spectate cap means it cannot be withheld from anonymous users nor verified via allcaps or current_user_can(). This could be remedied by including the spectate capability in the blocked role and mapping that role to anonymous users. The role map and caps could of course be filtered for sites that need to prevent both anon and blocked users from spectating (or need blocked users to have some additional access beyond anonymous)." kevinB 2210 Auto-set role on Multisite creates unusable links in toolbar and my-sites.php API - Roles/Capabilities 2.1 normal normal 2.8 defect (bug) new dev-feedback 2013-02-13T18:17:08Z 2017-07-11T00:08:38Z "When _bbp_allow_global_access is set to true and bbPress is network-activated, logged-in users are automatically added to any site they visit in a network, with the bbPress default role of 'participant'. This feature causes unexpected behavior in various parts of WordPress. For my example, user 'boone' has been auto-joined to site 'Foo'. - When viewing the site 'Foo', the 'Foo' top-level menu appears on the toolbar (the 'site-name' menu), as well as the Dashboard submenu item. Clicking on Dashboard leads you to a ""You do not have permission..."" error screen. - In the toolbar, 'Foo' now appoars as one of the 'My Sites' items. On a large network, this can make the menu very unwieldy; moreover, because of recent changes to `get_blog_option()` and the fact that `switch_to_blog()` is used liberally in building 'My Sites', it can easily cause memory timeouts when the My Sites menu gets large. (This is a separate WP bug, but is exacerabted by bbPress's behavior.) Also, the Dashboard menu is added to the 'Foo' flyout. - When 'boone' visits Dashboard > My Sites, 'Foo' is listed, along with a non-functional link to the Dashboard. On large networks, the result can be user confusion and performance issues. I've got a couple suggestions for how to approach the issue. All of the suggestions have problems, but one or more of them might be worth looking into. a. Since all of the problems listed above eventually trace back to `get_blogs_of_user()`, bbPress could filter that function to remove blogs where users are only Participants. This won't fix performance issues (the blog list is still built, and performance takes the hit at `get_blog_details()`), but at least it avoids potential confusion in the interface. b. Manually remove the problematic toolbar items after the toolbar is built. For example, for the 'site-name' menu: {{{ function bbg_remove_dashboard_link_for_participants( $wp_admin_bar ) { if ( ! current_user_can( 'read' ) ) { // If the user can't read, it's almost certainly a bbPress // error. Remove all subnav items to the site-name foreach ( $wp_admin_bar->get_nodes() as $node => $node_object ) { if ( 'site-name' == $node_object->parent ) { $wp_admin_bar->remove_node( $node ); } } } } add_action( 'admin_bar_menu', 'bbg_remove_dashboard_link_for_participants', 1000 ); }}} Something similar could be done for the My Sites > Foo > Dashboard menu item. This doesn't address my-sites.php. c. Stop auto-adding users when they visit sites. Wait until a more opportune moment (when they first visit a forum page; when they first visit the New Forum Post page; when they first attempt to post something). This ensures that users are only added to blogs where they've demonstrated interest (though including them in ""My Sites"" still seems a bit misleading). I know this issue is a tricky one to address, as you need to have the roles in order for bbPress to do a lot of work, and at least part of the problem is in the way `get_blogs_of_user()` works. (It would be nice, for instance, if you could noop it and supply your own checks, or if you could supply a minimum cap.) But I've already seen the issue crop up on three or four client sites, and my workarounds (such as the remove_node() snippet above) only address part of the problem. Thanks for your consideration." boonebgorges 2592 When not network-activated, bbPress user capabilities are broken. API - Roles/Capabilities 2.5.3 normal normal 2.8 defect (bug) new 2014-05-01T19:09:59Z 2014-09-09T19:27:35Z "I'm using bbPress in conjunction with Buddypress through Commons in a Box. When bbPress is network-activated, we have no problems. But when it's network-disabled and enabled only on our root blog, then user capabilities break. Specifically, the WP_User instance in `$currentuser` and called by `wp_get_current_user()` only contains a subset of `[allcaps]`, and is missing capabilities like `publish_topics`, even though the user may indeed have the ability to publish topics in a given forum. Instantiating `WP_User` manually shows all capabilities, but calling it otherwise shows the subset. This makes it so that some users will join a group and not be able to post topics in that group's forums, even though they should have the permissions to do so. There is even a button at the top of the page for creating a new topic, but clicking this button has no effect. If I run bbp_add_caps() (by adding it to my theme's `functions.php`), this restores their capabilities, but as far as I can tell, updating or disabling/reenabling the plugin causes the capabilities to be restored to this broken state. " jreeve 2175 New Topic Form Shortcode Issue API - Shortcodes 2.2.3 normal normal Future Release defect (bug) new has-patch 2013-01-22T17:13:56Z 2016-01-11T20:50:10Z """I’m trying to implement a “Quick Post” box using the New Topic Form shortcode, [bbp-topic-form], but it seems non-admin users cannot post using the form (it says, “You cannot create new topics at this time.”). The same users can post a topic by actually going into the forums."" - original thread author I am having this same issue; I created a “partner” page for /forums/ and put in the bbp-topic-index as well as the bbp-topic-form, but only admin users can use the create new topic form. I tried creating a custom template for this page but {{{ echo do_shortcode('[bbp-topic-form]'); }}} does nothing." allenmccabe 2720 Can't filter email notification per user API - Subscriptions normal normal Future Release defect (bug) new 2014-11-11T01:56:14Z 2016-05-30T19:54:25Z "Take a look here: https://bbpress.trac.wordpress.org/browser/trunk/src/includes/common/functions.php#L1278 {{{ $message = apply_filters( 'bbp_forum_subscription_mail_message', $message, $topic_id, $forum_id, $user_id ); }}} {{{ $subject = apply_filters( 'bbp_forum_subscription_mail_title', '[' . $blog_name . '] ' . $topic_title, $topic_id, $forum_id, $user_id ); }}} At that point, $user_id hasn't been set yet, so you can't access it inside the filter. It also triggers an ""Undefined Variable"" notice" alexander.rohmann 3360 Conflict in bbp_unsubscribe action with Buddypress API - Subscriptions trunk normal normal Awaiting Review defect (bug) new 2020-03-27T20:49:27Z 2020-03-27T20:49:27Z "By default, **bbp_unsubscribe** action works fine both AJAX and link versions For example: The subscribe button on top of a forum is an AJAX version The unsubscribe button in the ""subscription"" section within a user profile is a link version By installing Buddypress the AJAX version works fine, but the link version breaks This can be tested after installing Buddypress by subscribing to a forum and trying to unsubscribe by using the current nonce and the forum ID using the full URL with the adequate parameters (or just by going to the ->members->forums->subscription and trying to unsubscribe by pressing the button. {{{ ?action=bbp_unsubscribe&object_id=xxx&object_type=post&_wpnonce=xxxxxxxx }}} " SirLouen 3474 Subscriptions don't trigger for moderation-held topics/replies API - Subscriptions normal normal Awaiting Review defect (bug) new 2022-07-19T06:04:08Z 2024-03-20T00:59:04Z "This was [https://meta.trac.wordpress.org/ticket/3674 reported 4 years ago for the WordPress.org Support Forums], but I believe it's a bug within the way forum/topic subscriptions work within bbPress with relation to moderation/anti-spam. I was unable to find a relevant bbPress ticket describing this. In short.. - Forum notifications (`bbp_notify_forum_subscribers()`) is hooked to `bbp_new_topic` (and nothing else, nor is it called from elsewhere) - `bbp_notify_forum_subscribers()` checks a topic is public before notifying, via [https://github.com/bbpress/bbPress/blob/4178cbf665674c128c928fabdc0322badacad06b/src/includes/common/functions.php#L1267-L1270 bbp_is_topic_public] - `bbp_new_topic` is triggered from within `bbp_new_topic_handler()`, which is not called during unspam/approve flows. Replies have a similar flow. It seems like there needs to be a new action, `bbp_new_topic_published` which is triggered by being hooked to `bbp_{new,unspammed,approved}_topic`. Alternatively, `bbp_notify_forum_subscribers()` should be hooked to `bbp_{unspammed,approved}_topic`. However, there is also the case where those actions should only run once per topic (ie. if it's published, unapproved, then re-approved, it wouldn't make sense to send a notification). On WordPress.org, I've worked around this by triggering the action `bbp_new_topic` after unspamming/approving if it wasn't run with a published topic the first time. This is achieved by adding postmeta that specifies the action needs to be re-run. I took the direction of re-running actions, as we have a number of plugins which are hooked to that and bail if the topic isn't public. See https://meta.trac.wordpress.org/changeset/11978 for this implementation." dd32 2480 user forum subscriptions not shown johnjamesjacoby API - Subscriptions trunk normal normal 2.8 defect (bug) reopened reporter-feedback 2013-11-25T19:55:35Z 2014-09-09T19:27:35Z "Relates to your pretty well new forum subscriptions feature (#2299): includes/user/functions line 639: bbp_get_user_forum_subscriptions() tries to query `bbp_has_forums( array( 'post__in' => $subscriptions ) )`but `'post__in'` is no $arg for bbp_has_forums. It returns false even if user has forum subscriptions. So on user's subscription page no forums show up but 'You are not currently subscribed to any forums.'" wdfee 2506 Add subscription to category or entire forum API - Subscriptions trunk normal normal Future Release enhancement new 2014-01-06T23:01:40Z 2024-02-12T17:23:51Z "The RSS capability is great, but it is more complicated to use than my users want and the RSS feed services eco-system (mainly Google RSS related services) appears to be getting unstable to the point of collapsing. Please consider adding the ability to subscribe to entire forum categories - that is, to all new topics and replies in the entire hierarchy under a category. Also, having the ability to subscribe to any new postings in the entire forum through a subscribe link on the forum index would be very helpful to forum administrators and moderators." artkahlich 2314 Forum notifications in admin/user bar API - Subscriptions normal normal Future Release enhancement new 2013-04-26T08:50:59Z 2023-11-10T20:27:59Z "Show notification like ""''New reply in post XXXX from XXX, xxx minuts/hours/seconds ago''"" in the wordpress bar to topic subscriptors [[Image(http://triangulodelasbermudas.net/notifications.png)]]" tbermudas 2174 No notification when topic is split API - Subscriptions 2.2.3 normal normal Future Release enhancement new 2013-01-22T04:02:39Z 2016-08-25T07:33:08Z "Users participating in a topic that gets split do not get a notification on our forum. I opted to transfer favorites and subscriptions to the new topic." Sadr 1471 Request to add a user subscription page johnjamesjacoby API - Subscriptions 1.1-alpha normal normal Future Release (Legacy) enhancement new has-patch 2011-02-16T11:53:25Z 2023-04-26T08:27:47Z "The ability to subscribe to a topic by email was recently added. See #1366. Could we add a user subscription page with a list of subscriptions and unsubscribe links at a location like profile/username/subscriptions? " designsimply 2725 bbp_has_topics is broken on the tag page API - Widgets normal normal Future Release defect (bug) new dev-feedback 2014-12-03T18:19:05Z 2017-06-08T01:07:41Z "Hi, There is a bug with bbp_has_topics loop. This loop works fine on all pages except the page of tag archive: (http://www.???.com/forums/topic-tag/news/) {{{ if ( bbp_has_topics( array( 'author' => 0, 'show_stickies' => false, 'order' => 'DESC', 'post_parent' => 'any', 'paged' => 1 ) ) ) : bbp_get_template_part( 'loop', 'topics' ); else : bbp_get_template_part( 'feedback', 'no-topics' ); endif; }}} It doesn't show all recent global topic but it shows topics of 1 tag only." Diabolique 1792 Add a Who is online widget API - Widgets 2.1.2 normal minor Future Release enhancement new dev-feedback 2012-03-18T12:40:52Z 2013-09-01T15:21:07Z I must have widget for bbPress is that will show how many users are online, a list of user names would be fine showing in the sidebar of in the footer of the site. alexvorn2 1748 Forum-specific sidebar API - Widgets 2.0 normal normal Future Release enhancement new 2012-02-04T02:35:29Z 2012-09-25T04:55:09Z "There is a plugin called bbPress WP Tweaks http://wordpress.org/extend/plugins/bbpress-wp-tweaks/ What it proposes is very interesting. It was created so that the admin could relace the WordPress standard sidebar with a forum-specific sidebar on forum pages. ''When forum page is loaded then forum-specific sidebar will be displayed. If nothing has been placed in forum-sidebar (widget area) then regular WordPress sidebar will be shown... You can choose which forum wrapper template to use.'' The aim is great but the plugin doesn't work. This should be part of the core software as in my estimation, it would be useful for 90%+ of all bbPress users." sooskriszta 1918 New topics to appear in Recent Replies widget API - Widgets 2.0 normal normal 2.8 enhancement new 2012-07-27T08:05:10Z 2019-01-30T14:28:59Z When someone creates a new topic, it isn’t shown in the Recent Replies widget, and that way it usually remains unseen and without any replies in a site where the forum is mainly based on the widget. edinchez 2449 bbPress Recent Replies - make a unique option API - Widgets 2.4 normal normal Future Release idea new 2013-10-09T21:42:13Z 2015-02-02T19:00:04Z "Hello guys, I loev bbPress and what you do guys. But there is something missing in the widget option for recent replies. If users makes a reply to the same topic, then the same topic name will appear on the recent replies. I want an option on the widget to only show the latest reply (only 1 reply) from the topics. For example if the recent reply widget shows this: **Recent Replies Widget** Hello world Hello world Hello world Second world Just testing Just testing Nice site then I want the following instead when the unique option is checked for the widget: **Recent Replies Widget** Hello world Second world Just testing Nice site Anyway, I have, by looking at the widgets.php file changed the code between the
      and
    tags, line 1144 to 1195 to the following: {{{ have_posts() ) : $widget_query->the_post(); ?>
  • post->ID ); $reply_topic = bbp_get_reply_topic_title( $reply_id ); if ($i_unique != $reply_topic): $reply_link = '' . $reply_topic . ''; // Only query user if showing them if ( 'on' === $settings['show_user'] ) : $author_link = bbp_get_reply_author_link( array( 'post_id' => $reply_id, 'type' => 'both', 'size' => 14 ) ); else : $author_link = false; endif; // Reply author, link, and timestamp if ( ( 'on' === $settings['show_date'] ) && !empty( $author_link ) ) : // translators: 1: reply author, 2: reply link, 3: reply timestamp printf( _x( '%1$s on %2$s %3$s', 'widgets', 'bbpress' ), $author_link, $reply_link, '
    ' . bbp_get_time_since( get_the_time( 'U' ) ) . '
    ' ); // Reply link and timestamp elseif ( 'on' === $settings['show_date'] ) : // translators: 1: reply link, 2: reply timestamp printf( _x( '%1$s %2$s', 'widgets', 'bbpress' ), $reply_link, '
    ' . bbp_get_time_since( get_the_time( 'U' ) ) . '
    ' ); // Reply author and title elseif ( !empty( $author_link ) ) : // translators: 1: reply author, 2: reply link printf( _x( '%1$s on %2$s', 'widgets', 'bbpress' ), $author_link, $reply_link ); // Only the reply title else : // translators: 1: reply link printf( _x( '%1$s', 'widgets', 'bbpress' ), $reply_link ); endif; endif; ?>
  • }}} And it worked very good. But perhaps you guys maybe can make this as an option instead for the widget? So those who wants to display the unique topic replies have an option. regards" zilveer 2075 Display name missing on profiles when using extras templates Appearance - Theme Compatibility 2.2 normal normal 2.8 defect (bug) new 2012-11-29T08:28:47Z 2024-03-09T12:39:58Z Seems that the display names are missing on profile pages. jaredatch 3322 Login Widget: display issues with Twenty Nineteen/Twenty Themes Appearance - Theme Compatibility normal normal Awaiting Review defect (bug) new 2020-01-13T12:04:11Z 2020-01-14T00:27:02Z "### Steps to reproduce 1. On a brand new site using the Twenty Nineteen or Twenty Twenty Theme, install bbPress 2. Add the login widget to your sidebar 3. While logged in, visit your site and view the sidebar. You'll notice that the button text color is problematic (see attached gif). I think it would be nice if the widget looked good out of the box with the current default WordPress theme." jeherve 2823 User avatar in top left corner of topic at 480px or less if Reply Threading is enabled Appearance - Theme Compatibility normal minor Future Release defect (bug) new 2015-06-30T16:12:22Z 2016-05-31T07:00:17Z "This issue has been mentioned before in the support forums by users. I initially thought it was because of the users theme conflicting with bbPress's stylesheet, but after messing with threaded replies lately this issue shows up because of the bbPress plugin. [[Image(https://cldup.com/9-o4XAJwMW.jpg)]]" Robkk 3487 bbPress block theme support Appearance - Theme Compatibility 2.6.9 normal major Awaiting Review defect (bug) new has-patch 2022-10-05T10:21:19Z 2023-04-17T10:10:23Z "bbPress doesn't seem to currently support block themes. When testing with Twenty Twenty-Three and Twenty Twenty-Two, bbPress pages render a WSOD. I believe it's related to the index.php file that's included with the theme, as it looks like it's possible to (sort of) fix some of the pages by including the following in this file: {{{ wp_head(); block_header_area(); block_template_part( 'page-inner' ); wp_footer(); block_footer_area(); }}} There is a related discussion in the support forums: https://bbpress.org/forums/topic/template-in-block-themes/ There is also a similar ticket for the BuddyPress plugin, which seemed to be related to the index.php file as well. I'm not sure if it helps as I can't find any similar logic in bbPress, but here's the ticket: https://buddypress.trac.wordpress.org/ticket/8474#comment:31 (Apologies if this has already been reported, I couldn't find a related issue.)" mikachan 2377 Better Extra Templates Structure Appearance - Theme Compatibility 2.3.2 normal normal Future Release enhancement new dev-feedback 2013-08-05T17:23:41Z 2013-09-25T17:37:06Z "bbPress has 23 extra templates by default, all of them are compatible with the bundled themes. No problem :) But when we want to use bbPress with custom themes it's really hard, because you have to edit all this 23 extra templates to match your theme structure. Suggestion: There are many ideas to make this easier and more efficient, one of those is to introduce a new template let's called it 'bbp-structure' as an example, The bbp-structure should content the abstract template layout such as the Header,Sidebar and Footer with a primary hook 'bbp_primary_content' as an example. after that we convert all the existing 23 templates to functions and add them to the 'bbp_primary_content'. A similar technique can be found in the Genesis Framework. Or Momtaz Framework https://github.com/nash-ye/Momtaz-Framework See the structure.php and index.php files for better understanding: https://github.com/nash-ye/Momtaz-Framework/blob/master/momtaz/structure.php https://github.com/nash-ye/Momtaz-Framework/blob/master/momtaz/index.php" alex-ye 2423 Path for javascripts and custom template Appearance - Theme Compatibility trunk normal normal 2.8 enhancement new reporter-feedback 2013-09-10T21:17:38Z 2014-09-09T19:27:35Z The paths for JS (topic.js and reply.js) doesn't look to theme folder first and doesn't look at min version. sgr33n 3525 Show custom post types in REST Appearance - Theme Compatibility trunk normal normal Awaiting Review enhancement new has-patch 2023-02-03T14:53:52Z 2024-02-21T08:28:50Z Allow custom post types to be available in the block editor via REST api, this should complement the nice work from https://bbpress.trac.wordpress.org/ticket/3487 to make it easier for bbPress to support block themes and full site editing. undemian 2579 accessibility / usability in bbpress default theme Appearance - Theme Compatibility normal normal 2.8 enhancement new 2014-04-05T02:01:22Z 2014-09-09T19:27:35Z "I had an issue today with a guy who was using a screen reader and couldn't figure out how to start a topic. I've also had this problem with a couple of other people, too. I added in links under the breadcrumbs to anchors at the top of the topic form in topic-form.php and the reply form in reply-form.php and made sure that the focus goes to the appropriate textarea / input. I'm not sure if there's work being done on the default template but thought I'd mention because he was super happy with it and I think it will help other users too. (He was quite complimentary about the usability of the site, which is mainly bbPress, as a whole! This is down to you guys, not me. :) ) Examples here (this is not default bbpress theme but I started from that and the default doesn't have them): forum - http://thefastdiet.co.uk/forums/forum/body/weight-loss/ topic - http://thefastdiet.co.uk/forums/topic/no-weight-loss-please-help/ What I added at the top under the breadcrumbs (this is just to show what's happening - I have custom breadcrumbs and this is called from that function) {{{ //top-nav-bar function bbp_my_top_nav(){ if( bbp_is_single_forum() || bbp_is_single_topic() ){ printf(_x('
    Start a new topic in %2$s', 'bbpress'), bbp_get_forum_permalink(), bbp_get_forum_title() ) ; } if( bbp_is_single_topic() ){ printf(_x(' • Reply ', 'bbpress' ) ); } if( bbp_is_single_forum() || bbp_is_single_topic() ){ echo '
    '; } } }}} and the jQuery for focus {{{ //put focus on correct input when ""start a new topic"" and ""reply"" are clicked (in bbp_my_top_nav in bbpress-functions.php $('#new-topic').click(function (){ $(""input#bbp_topic_title"").focus(); }); $('#new-reply').click(function (){ $(""textarea#bbp_reply_content"").focus(); }); $(function() { var prevURL = window.location.href.indexOf(""#newtopic""); if(prevURL > -1){ $(""input#bbp_topic_title"").focus(); } }); }}}" tharsheblows 2814 Fix minor but common style issues inherited from themes Appearance - Theme Compatibility normal minor Future Release idea new dev-feedback 2015-05-26T08:40:52Z 2017-01-24T06:03:45Z "There are usually common CSS rules that are conflicting with bbPress' layout that are being inheriting from WordPress themes. The {{{.reply}}} class from the comment reply link. The {{{.hentry}}} class from themes. And in some cases avatar images look all out of place. And if I could find more I will add it on to here. Wonder if there are things we could add to the bbpress.css file to help make Theme integration a smoother process. Maybe add {{{!important}}} to some CSS rules?? " Robkk 1322 Post searches sometimes do not show results Back-end 1.1-alpha normal normal Future Release (Legacy) defect (bug) new 2010-08-05T12:32:06Z 2011-09-20T22:34:47Z "Admin post listings are sometimes not showing the actual posts. Attached a screenshot showing what I mean. You can see ""1 to 12 of 12"" in the corner (which is correct) yet the results pane shows ""no posts found"". This does not just happen for the specific search shown, it also affects blank searches, or e.g. spam post status searches." mrmist 1182 Register a view without a query Back-end normal normal Future Release (Legacy) defect (bug) new has-patch 2009-08-20T16:00:03Z 2011-09-20T22:33:13Z "On custom views I've been using a hacked up query to try to short-circuit the query. However there's no real way to prevent bbPress from doing some kind of query, which is a waste. I'd like to see something like if a boolean ""false"" is passed, no query is executed for the view and the view handler simply is allowed to take over." _ck_ 1981 Update topic/replies count after subforums changed location Back-end 2.1 normal normal Future Release defect (bug) new 2012-10-17T19:57:49Z 2012-10-17T21:21:09Z "Example: We have a Forum A and it's only Subforum B. If we change the parent of the Subforum B from Forum A to (No Parent), now Forum A (that is empty) has the count of topics and replies of the Subforum A. This is a bug. " alexvorn2 1183 function bb_latest_topics_pages doesn't obey $bb_db_override Back-end normal normal Future Release (Legacy) defect (bug) new has-patch 2009-08-20T17:48:28Z 2011-09-20T22:33:54Z "When $bb_db_override is true, function bb_latest_topics_pages calculated the topic pages on it's own anyway, with it's own query, that doesn't even obey filters. I propose when override is in effect, it looks at the old 0.9 bbpress global value `$total` which holds the total count. (it's a huge waste in the first place to be re-doing that query when it's already calculated in the main query for the latest-discussions call. You aren't even obeying any filters that are active) " _ck_ 1501 slash and backslash problem on windows Back-end 1.1-alpha normal major Future Release (Legacy) defect (bug) new 2011-04-21T12:28:12Z 2023-11-17T20:25:58Z "Some plugins that rely on bb_register_plugin_activation_hook have problems on Windows (such as [http://bbpress.org/plugins/topic/bb-attachments bbPress Attachments]). The hook is called for user#plugin-folder/plugin-file.php, but the activation is made with user#plugin-folder\plugin-file.php. Slash - backslash problem. bb_basename function returns the ""right"" path, but BB_Dir_Map class used in admin uses DIRECTORY_SEPARATOR constant to construct the path. As far as I know, Windows doesnt mind if you're using slashes." de-ce 2223 Add bbPress User Roles Dropdown to new-user.php Back-end 2.2.3 normal normal 2.8 enhancement new has-patch 2013-02-23T10:48:53Z 2014-09-09T19:27:35Z Hi , We should add bbPress user roles dropdown in new-user.php admin page . alex-ye 1193 Allow plugins to mess with $forum_options Back-end normal normal Future Release (Legacy) enhancement new 2009-09-26T00:13:17Z 2011-09-20T22:34:15Z "A filter is needed for ''$forum_options in bb_forum_form()''. An action hook in ''bb_update_forum()'' is also needed. This would allow plugins to interact with the creation and updating of forums allowing other options and settings that are associated with the forums that the plugin author might want to develop to '''''extend''''' bbPress." josh23french 2333 Allow to filter the replies by topic in the back-end Back-end 2.3.2 normal normal Future Release enhancement new 2013-05-14T19:06:12Z 2013-05-22T07:48:24Z It will be nice feature if we could filter the replies table in the admin by the Topic ID. This will enhance the mange experience, and make it easy to remove ore edit a set of replies for a certain topic. alex-ye 1989 Only show a single revision message Component - Any/All 2.1.2 normal normal 2.8 enhancement new 2012-10-23T19:42:50Z 2016-11-12T22:26:56Z "http://wpimpact.com/wp-content/uploads/2012/10/Untitled-3.png - If a user edits a topic or a reply multiple times than log info is added. I think it would be nice to show ONLY the last one. " alexvorn2 2151 BuddyPress: Disabling search engines from indexing blocks activity items from recording Component - Forums 2.2 normal normal Future Release defect (bug) new dev-feedback 2013-01-06T04:48:30Z 2014-02-04T20:33:48Z "The `bbp_is_site_public()` function is used in the `BBP_BuddyPress_Activity` class to determine if an activity item should be recorded into BuddyPress. The problem with this is if a site owner chooses to hide their site by disabling search engines from indexing (under ""Reading Settings"" in the WP dashboard), no forum-related activity content will be recorded. Note: This was tested on a single site install. I chose not to submit a patch because I wasn't sure what the original intention behind this was. Let me know!" r-a-y 2957 "Can only edit ""top level forums on the front end, cannot edit nested forums" Component - Forums normal normal Future Release defect (bug) new 2016-05-31T05:23:41Z 2016-05-31T05:23:41Z "I just created a three level nest of category forums: • `http://src.wordpress-develop.dev/forums/forum/top-category` • `http://src.wordpress-develop.dev/forums/forum/top-category/second-category` • `http://src.wordpress-develop.dev/forums/forum/top-category/second-category/third-category/` Adding `/edit` only works for • `http://src.wordpress-develop.dev/forums/forum/top-level-category/edit` It does not work for: • `http://src.wordpress-develop.dev/forums/forum/top-category/second-category/edit` • `http://src.wordpress-develop.dev/forums/forum/top-category/second-category/third-category/edit` Was thinking maybe this should work, but it also does not: • `http://src.wordpress-develop.dev/forums/forum/second-category/edit` • `http://src.wordpress-develop.dev/forums/forum/third-category/edit` The same is replicated when using forums instead of categories. Related: #2925" netweb 2939 "Single forum view missing moderator ""view=all"" link to view forums trashed topics" Component - Forums normal normal Future Release defect (bug) new 2016-05-02T07:47:12Z 2016-05-02T07:47:12Z "If a forum contains only trashed topics the `+4 Hidden` ""view=all"" link is not included in the forum description template notice. This issue only occurs when all topics in a forum are trashed. Below is a single forum with 4 trashed topics. [[Image(https://cldup.com/g6ufocGkyG.png)]] If 1 of the 4 topics is published, spam, or unapproved the correct `+3 Hidden` link to the `&view=all` single forum view works as expected. [[Image(https://cldup.com/czymQjou8N.png)]] The end result should be a view of the single forums 4 trashed topics: [[Image(https://cldup.com/HyySXIDXpo.png)]]" netweb 2925 This forum is a category. No forums can be created in this forum. Component - Forums 2.5.8 normal normal Future Release defect (bug) new 2016-04-05T15:32:19Z 2016-05-31T05:24:12Z "I am trying to add the interface using the shortcode to [bbp-forum-form], its working but when try to add the forum with a category as parent, it gives following error: ""This forum is a category. No forums can be created in this forum."" Is it a bug or I am missing any thing here?" markt2016 3416 bbPress Date Issue on Search Results Component - Forums 2.6.6 normal major Awaiting Review defect (bug) new 2021-01-11T22:13:05Z 2023-11-17T20:26:03Z "Our website is - https://www.thetreeofawakening.com/ Google does not see our date updates on the main forums - https://prnt.sc/ssescy If we manually update the forum page in the backend, then Google recognizes the new date. https://prnt.sc/rmh2wy New topics are added daily, but the search results only show the original date a forum was updated in the backend, not recognizing the daily topics that are added, which means the page has changed. This page changes daily, but the date in the search results does not - https://prnt.sc/rmh1hs We have a sitemap and rich snippets. Any help would be much appreciated. Thank you." SamahAmber 2401 Add option to disable root forum archive page Component - Forums 2.1 normal normal Future Release enhancement new 2013-08-30T19:39:07Z 2013-09-02T17:04:23Z "by default a new archive page is created `site.com/forums/` that displays all forum index... what if someone does not what this page to be displayed? It would be cool to add a checkbox to settings page that will remove this page." alexvorn2 3101 Subscriptions and Moderators have no sense for a Category Component - Forums trunk normal normal Future Release enhancement new 2017-04-11T15:07:09Z 2017-04-12T08:34:16Z "A forum can have subscriptions and can be moderated, but when it's a category there seems to be little sense to subscribe to it or moderate. So the 'Subscriptions' and the 'Moderators' meta box could be removed/hidden when editing a forum of type category" casiepa 3488 No filter to disable single forum description exists Component - Forums normal normal Awaiting Review feature request new 2022-10-05T13:21:20Z 2022-10-24T08:53:03Z "There is currently no way to avoid calculating all the stats for the ""This forum has x topics, x replies, and was last updated x mins by x."" above forums. There is already a filter to _alter_ it, but no way to avoid doing all those calculations. Well, yes. There is a way by removing the call to `bbp_single_forum_description()` from templates, but it would be nice to be able to filter if it should happen. This patch adds a `bbp_use_single_forum_description` filter that is checked before starting calling the function that gathers the data. " naxoc 2453 Search results and user's list of replies show replies from protected topics to everyone Component - Replies 2.4.1 normal normal 2.8 defect (bug) new 2013-10-21T09:54:24Z 2014-09-09T19:27:35Z "The issue is about the replies in the password protected topics. When a person enters the password protected topic name (or a part of it, or just some words that hidden replies can include) in the Search field, the forum shows the list of replies without any restrictions. While the title says that the topic is protected, the content of the reply is not hidden at all, and anyone can read it. The link is like that: http://example.com/forum/search/my-search-words The same is with the list of user's replies in their profile. Everyone can read all the replies, even those in protected topics. The link is like that: http://example.com/forum/users/user_name/replies I possess that replies from hidden topics should be either excluded from the search results and replies list at all, or their content should be hidden." tatiana_k 3383 bbPress metadata not updated when using Oasis Workflow to publish replies Component - Replies 2.6.5 normal normal Awaiting Review defect (bug) new 2020-07-20T20:55:47Z 2020-07-20T20:55:47Z "I am using bbPress version 2.6.5 and Oasis Workflow version 5.0 to develop a workflow that allows an admin to moderate and review a reply posted to a topic as pending before being allowed to be published. Everything works except for updating the meta data for the containing topic and forum once the reply is approved and published. In order to correct the topic and forum metadata I have added the following to a self-developed plugin that enables the bbPress rest-api and adds some additional fields to the returned rest-api JSON data. While this fixes it for me, I think that one or the other plugin should handle this problem so that others don't have the same problem and need to debug these issues. {{{ /** * Fires once a post has been saved. * * @param int $post_ID Post ID. * @param WP_Post $post Post object. * @param bool $update Whether this is an existing post being updated or not. */ function bbpress_update_post_meta($post_ID, $post, $updated = true) { if ($updated) { if ($post && ($post->post_type == bbp_get_reply_post_type())) { bbp_update_reply($post_ID); bbp_update_topic_reply_count($post_ID); bbp_update_forum_reply_count(bbp_get_reply_forum_id($post_ID)); } } } add_action( 'wp_insert_post', 'bbpress_update_post_meta', 10, 3 ); }}} I am submitting this ticket to both bbPress and Oasis Workflow as I am not certain where the responsibility for this code should reside and I am not sure if I have captured all that needs to be done. Please let me know if you require more information. Thank you for your help with this. Vern Badham" vbadham 3201 Pagination for threaded comments Component - Replies normal normal Future Release enhancement new 2018-05-27T14:24:10Z 2024-02-20T13:25:01Z "It would be really great if pagination for threaded comments could be looked into again. I notice there are a lot of people wanting this feature. @svetoslavd79 came up with a mostly working solution [https://wpup.co/bbpress-threaded-nested-replies-with-paging/] and in the comments section suggested an idea/consideration on how it could be re-done more elegantly to prevent url linking issues: > ...I’m starting to think that the most elegant way to deal with all this issues surrounding pagination of replies is to create a hidden field in the reply form that saves the page number as a custom field attached to the reply. If you can accomplish that, modifying or filtering anything that needs a link to that particular reply post should be a breeze after that. Anything else will have to involve some wild math to calculate each reply page number and will only weigh in on the execution and ultimately site speed and performance. This is still not super simple but something to consider if you want to pursue such implementation. Nevertheless, the code outlined below seems to work well with standard bbpress forum, with a couple of issues: 1. There is an issue with a buddypress group forum: after posting reply there, the refreshed url page number is incorrect. 2. When trashing a reply in forum, the pagination breaks... redirect goes to something like this .../?view=all#post-4296 and the pagination does not work and can't navigate pages as their url links are no longer correct. 3. Links may not link to the correct page number for the topic subscription email notifications and the Recent Replies widget. Below is the extract of @svetoslavd79 code from [https://wpup.co/bbpress-threaded-nested-replies-with-paging/] Copy the below function to your functions.php file. The modification will allow us to pass the current page and number of replies per page, so the query returns the correct reply posts. {{{ function wpup_bbp_list_replies( $args = array() ) { // Reset the reply depth bbpress()->reply_query->reply_depth = 0; // In reply loop bbpress()->reply_query->in_the_loop = true; $r = bbp_parse_args( $args, array( 'walker' => null, 'max_depth' => bbp_thread_replies_depth(), 'style' => 'ul', 'callback' => null, 'end_callback' => null ), 'list_replies' ); // Get replies to loop through in $_replies $walker = new BBP_Walker_Reply; $walker->paged_walk( bbpress()->reply_query->posts, $r['max_depth'], $r['page'], $r['per_page'], $r ); bbpress()->max_num_pages = $walker->max_pages; bbpress()->reply_query->in_the_loop = false; } }}} Next copy the below function to your functions.php file, right after the previous one from Step 1. This piece of code is responsible for displaying the page number navigation. The 2 important variables here are $numeplies – the total number of replies of the currently displayed topic and $paged – the current page number the visitor is displaying. You will find out how we are going to pass those values in the next few steps. {{{ //Custom Pagination function function wpup_custom_pagination($numreplies='', $pagerange='', $paged='', $repliesperpage='') { /** * $pagerange * How many pages to display after the current page * Used in combination with 'shaw_all' => false */ if (empty($pagerange)) { $pagerange = 3; } /** * $numreplies * What is the total number of replies in the current topic * $numpages * Calculate total number of pages to display based on number of replies and replies per page */ if ($numreplies != '') { $numpages = ceil($numreplies / $repliesperpage); } //assign value of 1 to $paged variable in case it's not passed on global $paged; if (empty($paged)) { $paged = 1; } /** * We construct the pagination arguments to enter into our paginate_links * function. */ $pagination_args = array( 'base' => get_pagenum_link(1) . '%_%', 'format' => 'page/%#%', 'total' => $numpages, 'current' => $paged, 'show_all' => False, 'end_size' => 1, 'mid_size' => $pagerange, 'prev_next' => True, 'prev_text' => __('<'), 'next_text' => __('>'), 'type' => 'plain', 'add_args' => false, 'add_fragment' => '' ); $paginate_links = paginate_links($pagination_args); if ($paginate_links) { echo """"; } } }}} This next snippet takes the current page you are on and changes the value of the hidden field in the reply form. This is so after replying, the page doesn't load at page 1. {{{ //customize the forum reply form redirect to send back to the current page you are on function wpup_reply_redirect() { if (bbp_is_single_topic()) { $redirect_to = ''; } return $redirect_to; } add_filter('bbp_redirect_to_field', 'wpup_reply_redirect', 10, 2); }}} However, two other places that may need looking at where the links may not link to the correct page number are the topic subscription email notifications and the Recent Replies widget. Next, edit loop-replies.php. On top of the file and right after the opening }}} and replace it with {{{ $paged, 'per_page' => 15)); ?> }}} *Remember to change 15 with the number of replies you want to see per page. Also, please note that only the main replies are considered when specifying the number per page, since the nested replies are children of the main reply. Next we want to call our pagination function, to display the page navigation. To do that, scroll down to around line 84 and include the following, right after the closing tag: {{{
    reply_query->posts; $numparentreplies = 0; foreach($replyposts as $value){ if($value->reply_to == 0) { $numparentreplies++; } } wpup_custom_pagination($numparentreplies,"""",$paged, 15); ?>
    }}} " MBV 2424 Redirect single replies to parent topic Component - Replies trunk normal normal Future Release enhancement new 2013-09-11T22:20:39Z 2014-06-17T14:15:42Z "I'm wondering if we should automatically redirect single reply pages to their parent topic. For example, right now if you go to Replies in the admin and click ""View Reply"" on a reply, you get a standard bbPress forum view of just that one reply. This view is more or less useless, since a reply has little relevance outside of its parent topic. How about redirecting these to the parent topic? I personally ran into this as a problem when I started incorporating bbPress replies and topics into my site's standard WP search. The search results used get_permalink(), which returned the single reply URL, but viewing this page was pointless because the reply didn't mean anything outside of its topic. I went ahead and wrote a small plugin to do this: https://github.com/pippinsplugins/bbPress-Redirect-Single-Replies-to-Topics" mordauk 2670 Reply to topics and replies in the backend Component - Replies 2.5 normal normal Future Release enhancement new 2014-08-05T00:35:07Z 2014-08-05T00:35:36Z "A request via the [http://bbpress.org/forums/topic/reply-to-topics-on-wordpress-backend/ forums] to allow topics to be replied to in the backend. Basically similar to how you can reply to WordPress comments. (See attached image) " netweb 3411 Some reply context options are unavailable when topic is marked as spam Component - Replies normal normal Awaiting Review enhancement new 2020-11-18T21:47:41Z 2023-04-26T08:22:46Z "If you mark a topic as spam, it may have legitimate replies, and spam replies mixed in under it. Currently, if you mark a topic as spam, the context of the replies is switched. in base bbPress, they are all trashed instantly, and you then need to restore the reply, to then be able to mark it as spam. To be able to effectively tackle a spam-topic with replies, you therefore need to start by marking any replies as spam, and then mark the topic as spam, which is a backwards route to take. Would it make sense to still include the spam action on trashed replies?" Clorith 2997 Update the reply headers on user profile replies view Component - Replies normal normal Future Release enhancement new has-patch 2016-09-16T11:29:00Z 2021-12-18T15:09:59Z "The header for replies on a users profile could do with an update: * The header fields `Author` and `Posts` really have no relevance to the current view * [[Image(https://cldup.com/Vkn4OKbgYP.png)]] Whereas with topics each of the headers matches up to the topic meta nicely: * [[Image(https://cldup.com/BXAUc8IpBT.png)]]" netweb 1907 Auto refreshing new replies Component - Replies 2.1.2 normal normal Future Release task (blessed) new 2012-07-18T05:28:36Z 2014-04-27T01:11:47Z Like in the p2 theme to auto refresh new replies. alexvorn2 3524 Search is not working in the profile's engagement. Component - Search normal normal Awaiting Review defect (bug) new 2023-02-03T13:12:51Z 2024-02-12T17:49:03Z "When we search from the engagement page of the profile, it is not working properly. Page Link => [https://bbpress.org/forums/profile/robin-w/engagements/] Issue Video Link => [https://share.cleanshot.com/DFTFWLk0myGDp98PHhFz]" aezazshekh 3516 The search functionality only works for single words Component - Search normal normal Awaiting Review defect (bug) new 2023-01-24T14:06:50Z 2023-01-31T06:01:59Z "If we search the title of the topic in the forum search of [https://bbpress.org/forums/forum/plugins/] page, the result is not properly displayed. URL => [https://bbpress.org/forums/forum/plugins/] Issue Video Link => [https://share.cleanshot.com/Fhj9dqJbV1y4nj8mvDt7]" aezazshekh 3021 bbpress.org/forums search : Error with pagination Component - Search normal normal Future Release defect (bug) new needs-unit-tests 2016-11-17T19:36:31Z 2017-03-03T15:18:36Z When e.g. looking for 'RSS' on https://bbpress.org/forums (https://bbpress.org/forums/search/rss/), and then clicking the 2nd page, I'm redirected to https://bbpress.org/forums/search/page/2/ , but that's not the 2nd page of the search. casiepa 2970 Allow only topic authors and users who can moderate to add/remove tags from a topic Component - Topic Tags 2.2 normal normal Under Consideration idea new dev-feedback 2016-07-11T18:16:35Z 2019-11-09T19:05:05Z "I believe regular participants shouldn't be able to just remove any topics existing tags, or that new users replying should be able to add any additional tags to a topic. Doesn't make sense to me. I am not sure if this was a bug that was never identified before or normal behavior. I just feel it should be changed to what the title describes. Yay or Nay Guys? " Robkk 2684 Depreciate function bbp_update_topic_topic_id() Component - Topics normal normal Future Release defect (bug) new 2014-09-10T22:41:43Z 2015-05-23T23:26:40Z "Following on from a previos IRC chat on bbPress meta where we have posts saving their own post ID as meta. ---- Depreciate `bbp_update_topic_topic_id()` introduced in r2955 Called only by `bbp_move_reply_handler()`, `bbp_update_topic()` and `bbp_split_topic_handler()` bbPress does not make any queries to get a topics `_bbp_topic_id` from postmeta We should use `bbp_update_topic()` instead to update a topic" netweb 3269 Invalid paginated support topic requests should return a 404 Component - Topics normal normal Future Release defect (bug) new 2019-10-31T12:09:10Z 2019-11-09T17:49:25Z See https://meta.trac.wordpress.org/ticket/4412 jonoaldersonwp 1642 Problems with pagination and sticky topics Component - Topics 2.0 normal normal Future Release defect (bug) new 2011-09-19T15:35:52Z 2015-02-23T10:17:49Z "I have 3 topics and I set up 2 topics per page. One of three topics is also Sticky. On first page there are shown all 3 topics (one is Sticky) and also link to second page (not needed - I can see all available topics on first page). Above topics is following problematic text: {{{ Viewing 3 topics - 1 through 2 (of 4 total) }}} But I should see only 2 topics (not 3) and there are not 4 total topics (only 3). This behaviour (combination of pagination and sticky topics) is very buggy, I guess..." pavelevap 3491 The content that is in the support topic in mobile size is not being displayed properly. Component - Topics normal normal Awaiting Review defect (bug) new 2022-10-18T11:43:53Z 2022-10-18T11:43:53Z When we open this [https://bbpress.org/forums/topic/disappearance-of-the-menu/] support topic in mobile size, then the text of the content gets cut a little bit. Because of this, the content is not displaying properly. aezazshekh 2264 Why closed topics are not displaying properly? Component - Topics 2.2.3 normal normal Future Release defect (bug) new 2013-03-17T18:10:30Z 2013-03-18T18:39:29Z "When you close a topic to new comments, topic display is totally changing. I tried with different themes, i tried on latest revision from trac but still same. How to produce: * Create a topic * Close this topic to new replies * Copy topic url * Open a different browser or incognito window and go topic url You will see only title and post content without any bbpress related info/style " unsalkorkmaz 3429 bbp_increase_user_topic_count incorrect for first user post Component - Topics normal normal Awaiting Review defect (bug) new has-patch 2021-05-17T17:02:35Z 2022-10-27T10:07:33Z "bbp_increase_user_topic_count and bbp_increase_user_reply_count both incorrectly calculate the count for a first post by an author making it 2 not 1. This is because the function looks at the user reply count, and if empty (as it will be for a first post) uses bbp_get_user_topic_count_raw to count the topics or bbp_get_user_reply_count_raw to count the replies. It then increments this count by 1. However since the topic or reply for that author has already been created by the time this bbp_get_user_topic_count_raw count happens, then it is counted here and then incremeted by 1 which makes it 2. " Robin W 3230 scheduled stickies appear immediately Component - Topics 2.0 normal normal Future Release defect (bug) new needs-unit-tests 2018-11-20T19:27:30Z 2018-11-20T21:05:24Z "If you schedule a sticky, it appears in the forum list immediately {{{#!php BP Labs. But it does not extend to the BBPress forums. I'm not aware of a plugin that does this for BBPress." blg002 1940 Multisite keep the register page on same site Component - Users 2.1 normal normal Future Release defect (bug) new 2012-08-21T08:12:50Z 2014-11-12T14:37:20Z The scenario I’m currently working on is where the forum is installed on a multisite, where all sites uses full domainmapping. Now, I would like the registration process to stay on the current webpage. Right now a new registration is taken to the primary domain (default multisite behaviour) But wouldn’t it be possible to have the options to keep everything ‘within’ the webpage where the forum is installed, especially on domain with domainmapping? As this would be the most logical I think for the end user? jumpmuz 2076 Potential Problem with bbp_get_displayed_user_field() Component - Users 2.2.2 normal normal Future Release defect (bug) new 2012-12-01T22:55:06Z 2012-12-08T04:09:52Z "I noticed some really strange behavior today with the bbp_get_displayed_user_field() function. 1. I went to profile edit screen for one of my forum users to grab their email address 2. I left the profile edit page 3. I went to the profile edit screen for another (different) forum user to grab their email address 4. The email field showed the email addressed for the first user that I accessed, but all other fields were correct 5. I refreshed the page an the user's email field corrected itself to show the proper email for the user I haven't dug into the issue too far, nor have I been able to consistent replicate the behavior, but I suspect it has to do with $bbp-displayed_user not getting updated 100% when profile screens are loaded." mordauk 2266 Profile not displayed for users with period in name Component - Users 2.2.3 normal normal Future Release defect (bug) new 2013-03-18T15:01:40Z 2013-03-29T20:38:14Z "The get_user_by retrieval fails because WP converts periods into dashes for user_nicename. You will need to do the same: {{{ $bbp_user = get_user_by( 'slug', str_replace( '.', '-', $bbp_user ) ); }}} " kevinB 3537 User name getting cut off in 768 pixel screen size. Component - Users normal normal Awaiting Review defect (bug) new 2023-03-03T18:27:39Z 2023-03-03T18:27:39Z "User name getting cut off in 768 pixel screen size. Page Link => [https://bbpress.org/download/]" aezazshekh 1483 User search has problems with no role on large usersets Component - Users 1.1-alpha normal normal Future Release (Legacy) defect (bug) new 2011-02-26T18:52:49Z 2011-09-20T22:36:39Z "Tested on bbPress 1.1-alpha-2855 (have not tested trunk). For large user-lists, user search on the bb-admin/users.php screen doesn't work unless you choose a role. This is caused by a couple layers of code expecting something other than what they're getting. Searching for ""otto"" for example, produces a URL like this: bb-admin/users.php?usersearch=otto&userrole[]= In users.php, this produces an input of $_GET['usersearch'] = ""otto"" and $_GET['userrole'] = array(0=>''). In other words, the userrole is not an empty array, but an array with a single empty string in it. This in turn passes to BB_User_Search like so: {{{ $bb_user_search = new BB_User_Search( @$_GET['usersearch'], @$_GET['page'], @$_GET['userrole'] ); }}} Which then becomes the same non-empty array passed down through this code: {{{ $roles = (array) $roles; $_roles = array(); foreach ( $roles as $role ) { if ( false !== $role ) { $_roles[] = stripslashes( $role ); } } $this->roles = empty( $_roles ) ? false : $_roles; }}} Which then is passed to the bb_user_search function in functions.bb-core.php. Since the $roles is not empty, it doesn't pass false. End result is that it ends up querying the usermeta table for meta_value LIKE '%%'. In MySQL, this basically returns every row with capabilities for the site in question. If the number of users returned happens to be vary large, then this bit: {{{ if ( $user_ids ) { $user_ids_sql = ""AND ID IN ("". join(',', $user_ids) . "")""; } }}} Will produce a query way too big for mySQL to handle. In the case I'm testing, it produced a query with about 1.7 million users in that IN statement. You can see the problem, I'm sure. Using this code in a plugin fixed the problem by converting the ""no-role"" case into an empty case, thus preventing the role from playing any part in the query: {{{ $role = @$_GET['userrole']; if ( is_array( $role ) && $role[0] == '' ) { unset($_GET['userrole']); } }}} However, this is a hacky workaround. The query shouldn't be pulling the user list and stuffing into an IN selection like that. A JOIN would be better, or at least a LIMIT selection based on the viewed page would be preferable. " Otto42 2965 Feature Request - Disable 'Change forum role' select when Users list is empty Component - Users 2.2 normal normal Future Release enhancement new 2016-06-16T20:57:24Z 2017-03-03T14:38:22Z "Hello, I noticed on the Users table if there's no users in your search that Wordpress disables it's 'Change role' select and Bulk Actions as there's no users for these actions to be executed upon. Would like to suggest that bbPress adopt this functionality so that the 'Change forum role' select is removed when the Users table is empty. Thank you" garrett-eclipse 2507 Retain topics and replies for deleted users Component - Users 2.5 normal normal Future Release enhancement new 2014-01-07T06:42:59Z 2017-06-14T05:45:22Z "When a user account is deleted an option to delete or retain the users topics and replies should be available to keep the original context of a topic and replies. ''In #2347 support was added for imported phpBB topics and replies to support posts where the original author had been deleted by assigning the original user name to `_bbp_anonymous_name ` for each topic or reply and a similar method could be used for this.''" netweb 3570 Check PHPcs Coding standard Extend normal normal Awaiting Review defect (bug) new has-patch 2023-06-16T07:42:13Z 2023-06-16T07:42:13Z "Hello Team, I have reviewed the code and found PHPcs errors & warnings in some of the files: Here, I mentioned all those files: src/bbpress.php src/templates/default/extras/taxonomy-topic-tag.php src/templates/default/extras/taxonomy-topic-tag-edit.php src/templates/default/bbpress-functions.php src/includes/admin/settings.php Thanks," viralsampat 3434 Akismet catches spam for moderator, but moderators are able to bypass spam Extend - Akismet 2.0 normal normal Awaiting Review defect (bug) new dev-feedback 2021-07-28T05:12:16Z 2021-07-28T05:12:30Z "In the Akismet module, moderators are able to bypass Akismet checks: https://github.com/bbpress/bbPress/blob/09313c9984c55429f3e664ca4383768b68ee34b9/src/includes/extend/akismet.php#L205-L211 However, if Akismet catches a post written by a moderator as spam, the following is listed in the ""Akismet History"" metabox with two entries: - Akismet caught this post as spam. - Post status was changed to publish. See: https://github.com/bbpress/bbPress/blob/09313c9984c55429f3e664ca4383768b68ee34b9/src/includes/extend/akismet.php#L578-L599 Perhaps changing the second log entry from ""Post status was changed to publish"" to ""Akismet spam check overruled. Post status was published because user is a moderator"" would be more clear and appropriate. " r-a-y 3587 param Should Add After global as per as per PHP Documentation Standards Extend - Akismet trunk normal minor Awaiting Review defect (bug) new has-patch 2023-11-14T14:42:13Z 2023-11-17T10:02:33Z In includes/extend/akismet.php file **@param** Should Add After **@global** Instead of before **@global** as per [https://developer.wordpress.org/coding-standards/inline-documentation-standards/php PHP Documentation Standards] shailu25 2775 Add check for spam button on topics and replies section Extend - Akismet normal normal Future Release enhancement new dev-feedback 2015-03-22T10:14:53Z 2015-03-23T03:23:32Z "I was browsing for some plugins on Github and i came across this little plugin. https://github.com/lenrsmith/bbpress-spam-cleaner The plugin requires Akismet and also adds a settings area in the Tools section and basically re-scans the topics and replies for spam that wasn't caught by Akismet on its first scan through. I think this basically works like the Check for Spam button on the comments section in the WordPress backend. Would be neat if this was added to core for better Akismet integration. " Robkk 3519 Send 'recheck_reason' parameter to Akismet during edits Extend - Akismet normal normal Awaiting Review enhancement new dev-feedback 2023-02-01T00:16:21Z 2023-02-01T00:16:21Z "We've been seeing a lot of false positive reports from Akismet recently, which made me look into the Akismet API docs some more: https://akismet.com/development/api/#comment-check. One thing that stood out is the `'recheck_reason'` parameter, which is supposed to be used when rechecking older content or edits. We currently do not send this parameter during forum post edits, which might make the forum post more susceptible for Akismet to return a spam response. I'll try and work up a patch when I have a bit of time." r-a-y 2888 BuddyPress Group Forum Feeds Are Not Using Correct URL Extend - BuddyPress normal normal Future Release defect (bug) new 2015-10-30T09:12:27Z 2024-02-12T17:20:19Z "A user has discussed in the forums [https://bbpress.org/forums/topic/where-is-rss-for-topics/ here] wondering where is the feed for the forum in the group. I was wondering the same thing as going to {{{ localhost/groups/groupname/forum/feed/ }}} seemed like it should work...but it doesn't. The user has to go to the original forum feed url, which would be something like this. {{{ localhost/forums/forum/feed/ }}} " Robkk 3328 BuddyPress activity update not working when editing topic or replies r-a-y Extend - BuddyPress 2.6.0 normal normal Under Consideration defect (bug) assigned dev-feedback 2020-01-18T03:10:17Z 2021-01-04T06:40:36Z "If you edit a bbpress topic or reply the corresponding BuddyPress activity entry is not updated. The bug is in includes/extend/buddypress/activity.php lines 507, 645. Even if revisions are enabled !post_type_supports( bbp_get_reply_post_type(), ‘revisions’ ) is true." michael8888 2869 BuddyPress notification bug for hierarchy replies Extend - BuddyPress normal normal Future Release defect (bug) new needs-unit-tests 2015-09-30T23:23:02Z 2016-05-31T06:46:13Z "A user has seemed to find a bug where they get BuddyPress notifications for when they reply while reply threading is enabled. While testing it seems to be more buggy than I thought at first. Here is the topic the user reported the issue. https://bbpress.org/forums/topic/problem-with-forum-reply-notifications/" Robkk 3430 BuddyPress: Pending group topics cannot be viewed Extend - BuddyPress 2.2 normal normal Awaiting Review defect (bug) new has-patch 2021-06-02T23:36:31Z 2021-06-03T21:18:51Z "One of our users reported that pending group topics cannot be viewed on the frontend. The problem is the topic lookup within a BuddyPress group forum looks against the post name: https://github.com/bbpress/bbPress/blob/09313c9984c55429f3e664ca4383768b68ee34b9/src/includes/extend/buddypress/groups.php#L1033. A pending topic does not have a post name, so the lookup fails. Attached is a patch, which fixes this by changing a pending group topic's slug to `'pending-{$topic_id}'` and switches up the logic to query pending group topics by the post ID. This is related to the other moderation tickets: #3349, #3353." r-a-y 3426 Fatal error: Uncaught Error: Class 'BBP_BuddyPress_Activity' not found johnjamesjacoby Extend - BuddyPress 2.6.6 normal normal Under Consideration defect (bug) assigned reporter-feedback 2021-03-16T14:55:47Z 2021-03-25T03:46:55Z "WordPress version: 5.7 bbPress Version 2.6.6 Client wanted to disable the activity stream, went to Dashboard > Settings > BuddyPress > Components > Activity Streams and Unticked the option. When he hit save it said There has been a critical error on this website and the entire website (including admin dashboard) was unreachable/unusable (only returning this error). After enabling debugging info, I received the following error (paths sanitized for security): {{{ Fatal error: Uncaught Error: Class 'BBP_BuddyPress_Activity' not found in public_html/wp-content/plugins/bbpress/includes/extend/buddypress/loader.php:153 Stack trace: #0 public_html/wp-includes/class-wp-hook.php(292): BBP_Forums_Component->setup_components('') #1 public_html/wp-includes/class-wp-hook.php(316): WP_Hook->apply_filters(NULL, Array) #2 public_html/wp-includes/plugin.php(484): WP_Hook->do_action(Array) #3 public_html/wp-content/plugins/buddypress/bp-core/bp-core-dependency.php(267): do_action('bp_init') #4 public_html/wp-includes/class-wp-hook.php(292): bp_init('') #5 public_html/wp-includes/class-wp-hook.php(316): WP_Hook->apply_filters(NULL, Array) #6 public_html/wp-includes/plugin.php(484): WP_Hook->do_action(Array) #7 public_html/wp-settings.php(560): do_action('init') #8 public_html/wp-co in public_html/wp-content/plugins/bbpress/includes/extend/buddypress/loader.php on line 153 }}} I was able to temporarily resolve the issue by patching the following function (wp-content/plugins/bbpress/includes/extend/buddypress/loader.php): Line 153 being the ""new BBP_BuddyPress_Activity()"" line. {{{ /** * Instantiate classes for BuddyPress integration * * @since 2.0.0 bbPress (r3395) */ public function setup_components() { // Always load the members component bbpress()->extend->buddypress->members = new BBP_BuddyPress_Members(); // Create new activity class if ( bp_is_active( 'activity' ) ) { bbpress()->extend->buddypress->activity = new BBP_BuddyPress_Activity(); } // Register the group extension only if groups are active if ( bbp_is_group_forums_active() && bp_is_active( 'groups' ) ) { bp_register_group_extension( 'BBP_Forums_Group_Extension' ); } } }}} Patched code: {{{ // Create new activity class if ( bp_is_active( 'activity' ) ) { // Temporary patch! if ( ! class_exists( 'BBP_BuddyPress_Activity' ) ){ require_once(dirname(__FILE__).'/activity.php'); } bbpress()->extend->buddypress->activity = new BBP_BuddyPress_Activity(); } }}} Let me know if there's any additional information that would be helpful. " jasonrush 3004 Participants can't view topics list when using bbp-single-forum shortcode of a Private Group Forum from a Private Group Extend - BuddyPress 2.5.10 normal normal Future Release defect (bug) new needs-unit-tests 2016-09-30T03:41:21Z 2017-03-03T14:12:43Z "Hello, Ran into this obscure bug with my configuration and confirmed on a fresh install. If you have a Private Group associated with a Private Forum and embed that forum in a page using the shortcode ([bbp-single-forum id=#]) then members of that group (forum participants) can't see the Topics listing. Admins and Mods seem to be able to. To reproduce; Install Wordpress, bbPress, Buddypress Enable Groups Create Group w/ Forum Make Group Private Make Forum Private Create some Topics on Forum Embed Forum in Page - [bbp-single-forum id=#] Add member to Group with participant role. Switch to group member Navigate to page You should see the Topic listing (If you go to the Group Forum Directly you will), but instead it's not rendered because bbp_has_topics is false) The forum embed does show the topic form so you can create topics but you won't see them listed unless you go to the group forum. Potential correlation - @netweb pointed out this possibly related issues - #2639, #2599, #459 Let me know if you need help reproducing or investigating. Thanks" garrett-eclipse 3435 Please use _n() in order to handle plural forms correctly Extend - BuddyPress trunk normal normal Awaiting Review defect (bug) new 2021-08-19T23:20:03Z 2021-08-19T23:20:03Z "English has a very simple structure for plural handling when there is a number in a string that count stuff: If ''n'' = 1 then use singular. In all other cases, use plural. So many developers tend to just ""test for 1 or more than 1"" and if the number is higher than 1, then they'll create something with printf(), like ""You've got ''n'' new emails!"" However, this will create problems with many languages that have more complicated structures for handling of strings that include numbers to count stuff. In Russian, for instance, there are three cases: ""Singular"" is used not only for 1, but also for 21, 31, 41, i.e. anything that ends in 1 (except the special case 11) ""Dual"" is used for numbers that end in 2, 3, 4, 22, 23, 24, i.e. anything that ends in 2, 3 or 4 (except the special cases 12-14). ""Plural"" is used for everything else 0, 5-20, 25-30... If you think this is complicated, then have a look at Arabic. For every string with _n() they translate it into 6 (six!) different versions, depending on the number. See for yourself at https://translate.wordpress.org/projects/wp/dev/ar/default/?filters%5Bstatus%5D=either&filters%5Boriginal_id%5D=12071412&sort%5Bby%5D=translation_date_added&sort%5Bhow%5D=asc So with our example string above, the translator would be forced to choose one of these three forms and accept that the translation will be incorrect in many cases... or try to rebuild the string, perhaps by saying something like ""You've got new mails: ''n''"". But there IS a good and elegant solution for this. _n() (And nowadays we can use a similar function in Javascript!) I stumbled upon a place in bbPress trunk where this needs to be fixed: https://plugins.trac.wordpress.org/browser/bbpress/trunk/includes/extend/buddypress/notifications.php#L89 {{{#!php 1 ) { filter = 'bbp_multiple_new_subscription_notification'; $text = sprintf( esc_html__( 'You have %1$d new replies to %2$s', 'bbpress' ), $action_item_count, $topic_title ); }}} Note: It's still often nice to keep the test for ""1"" in the code and have a different string in that case. Something like ""Hey, there's a new mail waiting for you."" I was verbose here so that this ticket could be used for reference in the future. There may be more occurrences of this problem in bbPress, I didn't search for more." tobifjellner 3576 Prepare bbPress for BuddyPress 12.0.0 Extend - BuddyPress trunk normal normal Awaiting Review defect (bug) new has-patch 2023-07-23T16:43:59Z 2024-02-27T18:41:04Z "BuddyPress 12.0.0 will change how URL parsing is done / BP Links are built using the WordPress Rewrite API. You'll find in the attached patch my suggestions to have bbPress ready for BuddyPress 12.0.0 and still back compatible with previous versions of BuddyPress." imath 2929 Redirect Original Topic URL to New URL when Topic Moved (Buddypress Group Forum) Extend - BuddyPress normal normal Future Release defect (bug) new needs-unit-tests 2016-04-13T20:05:17Z 2017-03-03T14:41:30Z "Hello, Discussed this with @thebandonallen over slack so will share that conversation. Basically I have a topic that resided within a Buddypress Group Forum which I moved to a bbPress stand-alone forum. The url for the original topic doesn't redirect to the new location and just shows the no topics message 'OH BOTHER! NO TOPICS WERE FOUND HERE!'. Would love the system to either auto-forward to the topics new location, or provide a contextual notice indicating this topic has been moved and provide a link to the new location within the message. Full Slack Thread with @thebrandonallen; garrett-eclipse [12:25 PM] Hey Guys, wondering if there’s anyway to redirect an original topic url to a moved topic url. So I move a topic from one forum to another, but when people go to the original url right now it says oh bother no topics found, would like to either auto redirect or provide a link to the new location. Is this even possible? thebrandonallen [12:32 PM] Is this in a BuddyPress group forum? [12:32] If you’re using default /topic/topic-title/ pretty urls, everything should be fine. garrett-eclipse [12:32 PM] I moved it from a BP Group Forum into a BBP standalone forum thebrandonallen [12:33 PM] Hmm… [12:33] So you moved just the topic, right? garrett-eclipse [12:34 PM] And yes should be that way. Original URL - https://ljlee.ca/groups/attendee/a_series_vancouver_2015/forum/topic/course-organization-comments/ *Not accessible unless logged in New URL - https://ljlee.ca/forums/topic/course-organization-comments/ *Is private topic [12:34] Yup just the one topic, topic-slug stays the same, etc. [12:35] I found a trac ticket about merging topics and the _wp_old_slug meta and wp_old_slug_redirect https://bbpress.trac.wordpress.org/ticket/2329 But I don’t see that meta in my instance thebrandonallen [12:36 PM] I believe that meta would only be there if you merged the topic, not if you moved it to another forum garrett-eclipse [12:37 PM] thx, and I guess even if it existed the original url wouldn’t have any reference to know what topic used to live there thebrandonallen [12:41 PM] I think the problem is the group still exists, it’s just that the topic was moved. [12:42] bbPress filters `redirect_canonical` to handle the group links, but doesn’t account for the topic to have been moved somewhere else. [12:43] Which is why `redirect_canonical` isn’t redirecting to the new location. [12:43] Sounds like a bug to me. Can you open a ticket on Trac so we can investigate further? garrett-eclipse [12:44 PM] Thanks Brandon, definitely can. Would I open under bbPress or BuddyPress? thebrandonallen [12:47 PM] I think it’s on bbPress’ end, so do it there. Thanks! Appreciated, Cheers" garrett-eclipse 3452 Spacing missing in the whole main container. Extend - BuddyPress normal normal Awaiting Review defect (bug) new 2022-03-17T07:22:31Z 2022-03-17T07:22:31Z On checking the whole site you will notice that the main container has no left and proper spacing due to which the content will touch the left and right part of the screen. hilayt24 3454 Unsubscription action does not work when used with BuddyPress Extend - BuddyPress normal normal Awaiting Review defect (bug) new 2022-03-22T11:55:20Z 2022-09-23T14:48:48Z "On the susbcriptions page, the tables of subscribed topics and forums contain ""x"" links to unsubscribe. These appear not to work when Buddypress is installed. On click the subscription reloads with no action having been taken. The class `BBP_BuddyPress_Members` contains this code: {{{#!php // Move handler to 'bp_actions' - BuddyPress bypasses template_loader remove_action( 'bbp_get_request', 'bbp_subscriptions_handler', 1 ); add_action( 'bp_actions', 'bbp_subscriptions_handler', 1 ); }}} The method `bbp_subscriptions_handler` takes a single argument `$action`. However, this is not set in a buddypress context as the `bp_actions` action is called as `do_action( 'bp_actions' );` without arguments. An easy fix would be to read the `$_GET` directly in `bbp_subscriptions_handler`. " bradleyt 3014 BuddyPress group deletion not deleting bbPress Forum Extend - BuddyPress 2.0 normal normal Future Release enhancement new 2016-10-28T16:28:42Z 2017-06-05T17:17:52Z "When a BP Group that has a forum is deleted, the forum is not deleted. This can cause issues since the only people who can delete that group are the site admin. Could it be arranged for the forum to be deleted with the rest of the group please?" Venutius 1159 XSS XHR Security Violation on SSL/HTTPS. Front-end normal major Future Release (Legacy) defect (bug) new 2009-07-21T16:07:20Z 2023-11-17T20:25:04Z "XSS XHR Security Violation on SSL/HTTPS. I understand SSL with the current release is NOT guaranteed yet however when the time comes this should be looked at. I've flagged this with 'major' severity as it's a security issue and I believe these by default should be above normal. '''Ajax triggers XSS security violation in the following browsers:''' Opera Chrome (current stable - trunk as of 7.21.2009) Safari (current stable - trunk as of 7.21.2009) WebKit (current stable - nightly build as of 7.21.2009) '''Browsers that allow ajax to run:''' I.E. 6 FireFox 2.X '''Untested:''' I.E. 7, 8, 9 :-) '''Types of Ajax Actions which this occurs:''' - Favorites add/remove - User topic reply delete/undelete Ajax triggers WebKit Browsers and others. '''Stack (Latest Stable as of 7.21.2009):''' WPMU 2.8.1 >> bbpress 1.0.1 >> Integration Plugin '''Additional Notes:''' - You need to define both SSL options in both wp-config, bb-config. - You need to edit integration plugin, manually flagging secure=true as secure cookies aren't generated in current version. '''Debugging Info:''' - I've only (at this time) debugged upto the xhr.send(). - Error is caught by jQuery in catch block, with ""Security Violation"" being the only indicator. - Will continue debugging when there is free time. '''Forum Post with additional info:''' http://bbpress.org/forums/topic/chromesafari-webkit-javascriptajax-issues - Jason Giedymin" Jason_Jm 2184 Marking a topic or a reply private in the front-end Front-end 2.2.3 normal normal Future Release enhancement new 2013-01-27T15:01:04Z 2013-09-19T13:16:01Z "Allowing users to mark a topic or a reply as a private to be shown only for admins and forum moderators, [image] http://s-plugins.wordpress.org/bbpress-private-replies/assets/screenshot-1.png?rev=625843 [image] http://s-plugins.wordpress.org/bbpress-private-replies/assets/screenshot-4.png?rev=625843 like what this plugin does: http://wordpress.org/extend/plugins/bbpress-private-replies/" alexvorn2 677 Search Page styling Front-end normal normal Future Release (Legacy) enhancement new has-patch 2007-06-27T17:57:27Z 2011-09-20T22:32:21Z THe search page needs some love. mdawaffe 1979 integrate quickedit option Front-end 2.1.2 normal normal Future Release enhancement new 2012-10-16T12:14:33Z 2013-03-29T03:38:45Z "Editing a reply should be fast as a click... Maybe to remove the edit files and use only quickedit option." alexvorn2 3033 Add PHP 7 compatibility for existing bbpress sites xknown General normal normal Future Release (Legacy) defect (bug) new 2016-12-09T13:27:48Z 2017-01-06T06:01:09Z "There are a few compile time errors in the codebase as well as a bunch of deprecated notices when bbpress is used under PHP 7. This happens on the latest bbpress version (see #2973) as well as the 1.1 and 1.2 branches." xknown 3307 Add `README.md` file to the project root General normal normal Awaiting Review defect (bug) new has-patch 2019-12-15T01:20:53Z 2019-12-21T00:56:09Z "It would be good to have a README.md file in the project root as shortly there will be a Git mirror of `git://bbpress.git.wordpress.org/` at https://github.com/bbPress/bbPress and it looks a little bare without this file on GitHub Uploading the previous file I had on my mirror, it's out of date, but has some info we may want to copy over before I delete my mirror https://github.com/ntwb/bbPress/blob/master/README.md" netweb 3558 BBPress iframe does not responsive on mobile device. General normal normal Awaiting Review defect (bug) new 2023-05-18T16:25:01Z 2023-05-18T16:25:01Z "I have reviewed many pages on mobile devices and found the iframe does not responsive. Please check below all the attached a screenshot for more understanding. Also, check the below all pages. Screenshot: https://share.cleanshot.com/qLrmkKRqXPRB9YP1xL4W Pages: - https://bbpress.org/forums/topic/bbpress-2-6-5-is-out/ - https://bbpress.org/forums/topic/before-posting/ - https://bbpress.org/forums/topic/bbpress-2-6-6/" upadalavipul 3494 "Bump ""Tested up to"" version to the latest WordPress version" General normal normal Awaiting Review defect (bug) new has-patch 2022-10-22T15:36:40Z 2023-06-09T16:16:05Z "bbPress plugin url: https://wordpress.org/plugins/bbpress/ Currently in this plugin page, Tested up to is 5.9.5 We need to bump this version to the latest version of WordPress (which is 6.0.3) at the moment. Note: 6.1 is coming on November 1, 2022." robinwpdeveloper 3571 Check PHPcs Coding standard not having proper escaping function General normal normal Awaiting Review defect (bug) new has-patch 2023-06-16T08:55:21Z 2024-02-16T09:47:42Z "Hello Team, I have reviewed the code and found PHPcs errors & warnings in some of the files: Here, I mentioned all those files: /wp-content/themes/bbpress-org/bbpress/form-topic.php /wp-content/themes/bbpress-org/header-front.php /wp-content/themes/bbpress-org/page-plugins.php /wp-content/themes/bbpress-org/sidebar.php" himshekhar07 3589 Deprecated Warning General 2.6.9 normal normal Awaiting Review defect (bug) new 2023-12-06T13:23:36Z 2023-12-06T13:23:36Z " Deprecated Creation of dynamic property BBP_Forums_Component::$members is deprecated wp-content/plugins/bbpress/includes/extend/buddypress/loader.php:149 Deprecated Creation of dynamic property BBP_Forums_Component::$activity is deprecated wp-content/plugins/bbpress/includes/extend/buddypress/loader.php:153 Active plugin set bbPress BuddyPress Query Monitor https://prnt.sc/GbzH3V6xy-Ac" vapvarun 3556 Docs: Improve various globals documentation, as per docblock standards. General normal normal Awaiting Review defect (bug) new 2023-05-09T14:07:27Z 2023-05-09T14:07:27Z "Function commenting details needs to improve. File Names: - src/includes/core/update.php - src/includes/extend/akismet.php - src/includes/extend/buddypress/members.php" upadalavipul 2418 Error in bbp_get_user_subscribe_link function General trunk normal normal Future Release defect (bug) new 2013-09-10T09:09:09Z 2013-09-14T00:26:03Z "Hi, the ""before arg"" doesn't really work. Infact if you declare it, then, when you will press ""favorite"" link, it will come back to its default value in includes/users/template.php, "" | "" To try use the following code: bbp_user_subscribe_link( array( 'before' => 'hi' ) ); then click on subscribe link, and you will see that ""hi"" will become the default ""|""." sgr33n 2302 Favorite/Subscribe AJAX doesn't work inside BP Group Forums MZAWeb General 2.1 normal normal 2.8 defect (bug) new 2013-04-14T10:51:52Z 2014-09-09T19:27:35Z "In #1905 we introduced the pure wp_ajax handlers in the theme. Seems that the correct scripts are not loading in BP group forums. Reported here: http://bbpress.org/forums/topic/enqueue-ajax-script-in-buddypress-groups-forum/ " MZAWeb 3593 Fire Engineering Consultancy General normal normal Awaiting Review defect (bug) new 2024-03-28T13:06:23Z 2024-03-28T13:06:23Z "pricing in addition to a motivation in order that Each {{{#!html Fire Engineering Consultancy }}} Leeds individual and each buyer is pleased with their buy." abdulmateenr 3370 FluxBB import General normal normal Awaiting Review defect (bug) new 2020-05-10T07:35:15Z 2020-05-10T07:35:15Z "Replies are not imported. FluxBB 1.5.11, WordPress 5.4.1, bbPress 2.6.4." fraph24 3355 Forum Pagination links are broken General normal normal Awaiting Review defect (bug) new 2020-03-14T13:28:17Z 2024-01-26T15:09:31Z "I posted this issue in buddypress trac some weeks ago: I've found that forum pagination links are broken: Check this user for example: https://buddypress.org/members/modemlooper/forums/ In the bottom pagination links: [[Image(https://i.imgur.com/4D6qDpX.png)]] But they commented that it could be an issue on bbpress https://buddypress.trac.wordpress.org/ticket/8237#comment:3" SirLouen 3439 Icons used for panels in BBPress don't show the alt tag. johnjamesjacoby General normal normal Awaiting Review defect (bug) assigned reporter-feedback 2021-10-12T07:39:48Z 2022-03-07T21:46:13Z "The situation: On our website we have a tab view of different subjects for the youth to open in order to find more information about these subjects (t. ex. living on own, well-being & health, relationships & dating...). On each tab we have an icon for them. We have made this tab view with bbPress-forums. The issue: These icons in tabs don't show the alt text at all and it messes up the accessibility-rating of our whole site. The icons are loaded from our WordPress library and have alt texts there, so the problem isn't in the icons themselves. This leads me to believe that the cause is your plugin. Is there a way for me to fix this or is this something that you have to do yourselves?" hemeba47 3467 Left - Right padding is absent. General normal normal Awaiting Review defect (bug) new 2022-06-03T05:15:58Z 2024-03-17T13:09:43Z "On the about page in the smaller devices (I attached a screenshot for the 830px device). The padding is missing in the main container due to which the texts are touched on the sides." hilayt24 3466 Missing padding and Horizontal scroll in smaller devices General normal normal Awaiting Review defect (bug) new 2022-05-27T05:14:02Z 2024-03-17T13:10:58Z "On the smaller devices, the padding is missing in and the horizontal scroll is appearing due to the overflow. Screen shot of issue : https://prnt.sc/4KLm-aR0uCJz" hilayt24 3529 Mobile menu does not proper manage padding on the https://bbpress.trac.wordpress.org/ticket page. General normal normal Awaiting Review defect (bug) new 2023-02-09T12:14:50Z 2024-02-21T19:32:24Z I have reviewed the https://bbpress.trac.wordpress.org/newticket page on a mobile device and found this site menu does not show properly Also below footer menus need to be left and right padding. Please check it below and the attached screenshot. upadalavipul 3555 Need to removed unused variable. General normal normal Awaiting Review defect (bug) new 2023-05-09T12:29:06Z 2024-02-15T07:38:09Z "I have reviewed the BBPress site code and found that one of the files in unused variables define and it's not used anywhere. Please check the below file. File: src/includes/extend/buddypress/groups.php" upadalavipul 3505 Need to wrap text in footer section General normal normal Awaiting Review defect (bug) new has-patch 2022-12-09T09:45:38Z 2022-12-09T09:45:38Z " We need to wrap text in footer section in 820px (Ipad air). here is the link:[https://codex.bbpress.org/] screenshot: [https://share.cleanshot.com/KC4bfDhDFldUeDcBO0zl] " multidots1896 3509 Needs to padding or margin in the bbpress.org/download/ page some of the section. General normal normal Awaiting Review defect (bug) new 2022-12-30T10:32:12Z 2023-01-16T12:59:22Z "I have reviewed BBPress on mobile devices and found bbpress.org/download/ page some of the sections need to improve the design. Please check the attached screenshot. URL: https://share.cleanshot.com/zTrRPkPRJlxh5NY2S4BL" upadalavipul 3536 Pagination count text not displaying on mobile responsive devices. General normal normal Awaiting Review defect (bug) new dev-feedback 2023-03-03T07:44:59Z 2023-03-03T07:44:59Z "Hello Team, I have checked the [https://bbpress.org/forums/] page and tried to find something using its search functionality and found that its pagination text is hidden on mobile responsive devices. For better understanding, I have prepared its video. [https://share.cleanshot.com/V8cGNRRLHlFk59n6hhq0] Thanks," viralsampat 2517 Password on most recent blog post causes forum search to require same password General 2.5.3 normal normal 2.8 defect (bug) new 2014-01-17T12:46:20Z 2014-09-09T19:27:35Z I password protected my most recent blog post [http://talked.tv/2013/12/18/assessment-close-reading-and-opinion-writing/] and it is causing my BBPress forum searches (using the search widget on this page [http://talked.tv/forums/forum/talkedtv-forums/]) to require the same password used for that post in order to return the search results. If I remove the password, the BBPress search no longer requires the password. talkedtv 3543 RSS Feed: use bbpress functions for post and reply authors General normal normal Awaiting Review defect (bug) new has-patch 2023-03-30T16:25:44Z 2023-03-30T16:25:44Z "Currently, the RSS feed output from `bbp_display_replies_feed_rss2` uses `the_author()` to output the display name for the topic and reply authors. This prevents any filters added to bbpress core functions from being applied to the display names. We should use `bbp_author_display_name()` had `bbp_reply_author_display_name()` instead. " yoavf 3448 Right side white space is coming in bbPress site in mobile and tablet size General 2.6.9 normal normal Awaiting Review defect (bug) new has-patch 2022-03-14T06:52:52Z 2022-03-22T12:44:00Z "When you open the bbpress.org site in tablet and mobile size, then white space is coming on the right side of the site. Because of this, the design of the site is deteriorating. And at 320 pixels the Download bbpress button is coming out of the site. Site Link => https://bbpress.org/ I have created a video of the issue. its link is given below. [https://www.loom.com/share/d3fd431e093043cb8fbd13d47264242b]" aezazshekh 3504 Spacing is missing in responsive. General normal normal Awaiting Review defect (bug) new 2022-12-08T16:32:19Z 2024-01-08T00:34:51Z "Steps to reproduce the issue :- 1. Click the URL :- https://bbpress.org/about/ 2. Check between 960 to 783. The spacing is missing for left and right both side." nidhidhandhukiya 3469 Spacing is missing in whole site in the main container General normal normal Awaiting Review defect (bug) new 2022-06-08T05:07:44Z 2024-03-17T13:09:35Z "On checking the whole site for the responsive issues I found that the spacing issue on the smaller device is appearing on each and every page. And due to this, the fonts are touching the page sides in the smaller devices. Steps : 1. Visit any page on the https://bbpress.org/ 2. Open the page in the responsive mode. 3. You will notice that in the smaller devices the text is touching the sides. solution : {{{ @media and (max-screen:1024px){ #main { padding-left :10px; padding-right : 10px; } } }}} The above CSS will add the padding left and right in the smaller devices. Due to this, there will be spacing in the smaller devices. " hilayt24 2329 The URLs of merged topics do not forward to the updated topic URL jmdodd General 2.1 normal minor Future Release defect (bug) new dev-feedback 2013-05-07T18:10:56Z 2016-04-13T19:35:50Z "When you merge thread A into thread B, any URLs for thread A break. This causes an issue for forum members participating in topic A who are following along via email notification. Here's the flow: 1. Member responds to topic A and opts to receive email notfications 2. Other members respond. Member is sent email notifications about responses to topic A. 3. A moderator merges topic A into topic B 4. Member goes to check email, sees notifications about topic A, and clicks URL in notification email. 5. Member is directed to topic A's URL, which is now a 404. Member does not know that topic A is now part of topic B. To keep notifications functioning effectively, it makes sense to have merged topic A's URL forward to topic B's URL." arielmeadow 3586 Topics aren't hierarchical but still treated this way General normal normal Awaiting Review defect (bug) new 2023-11-14T13:33:08Z 2024-02-16T09:48:35Z "When `bbp_get_topic_post_type()` is registered, it has the argument `'hierarchical'` set to `false`. Yet, in every `WP_Query` for topics, `post_parent` is populated with a forum ID. This meta key is also stored via `bbp_update_topic_forum_id()`. So, the hierarchical behavior is hacked into Topics and then rerouted to another post type: Forums. I'm unsure how to interpret this: Are they hierarchical, and should this value be changed? Or aren't they, and should we consider relying on a non-standard meta key?" Cybr 3583 Updates to support PHP 8 General trunk normal normal Awaiting Review defect (bug) new has-patch 2023-09-13T22:49:38Z 2024-02-24T03:50:48Z "This is my pass at making bbPress code work correctly with PHP 8. One specific thing I want to highlight is includes/admin/parser.php - which is a generated file. My patch includes updates to it as well, since it seems to be long out of sync with NBBC. I used Rector to identify what needed to be changed, and generally took the suggested patches it generated." josephscott 3149 Usability: Understanding the Tools / Forums / Upgrade tab johnjamesjacoby General trunk normal normal 2.8 defect (bug) new 2017-08-20T14:54:25Z 2018-04-23T04:00:17Z "I've got a few questions about the Tools -> Forums ""Upgrade"" tab from a usability perspective. On a brand new bbPress install, i.e. the tables have just been created and are still (mostly) empty, the tab displays and lists a number of actions. Running each of these actions - of course - gives ""nothing to do"" responses, but the actions are not taken off the page. 1. Why do actions display when they will have no effect / are unnecessary to run ? 2. Why does the tab display when there are no actions which would have any effect ? As a user, the tab feels like something I'd ""need to do"" as keeping up to date is important, but as the tab, nor the actions, do not go away after having run them, their importance is diminished. For me, this would mean that I would in the future disregard the tab / not look at it again and not action anything on it (unless maybe specifically pointed to it through an admin notice). This net effect seem to be to counter to the importance of keeping the database schema up to date and to have the opposite of the intended effect. " jrf 3470 User Profiles don't display the user description General normal normal Awaiting Review defect (bug) new 2022-06-13T20:01:35Z 2024-03-17T13:09:28Z "The profile template (bbpress/templates/default/bbpress/user-profile.php) has the following code (lines 21 to 25): {{{#!php

    }}} Except the user description does not display the content entered by the user in the user bio. " coopersita 2233 bbPress Topic or Replies states bugs ! General 2.2.3 normal normal Future Release defect (bug) new 2013-02-28T19:02:59Z 2016-08-10T05:58:36Z "Hi , I had been reviewing how bbPress handle the post status like private,closed...etc , There are many bugs I will publish about them soon most of them need some WordPress modifications since WordPress core have a many bugs too in the post states system ... This is a simple list of some bugs I have founding them nowdays : 1 ---[User Posts Counter]:[[BR]] The user topics or replies count functions like bbp_get_user_topic_count_raw() , bbp_get_user_reply_count_raw() ...etc a - Not exclude the private posts , Even for those users they can't read the private posts . b - ~~Not include the closed~~ or spam ... etc topics or replies . ... etc 2 -- [The Back-end Interface][[BR]] There are some bugs in the wp-admin too , because WordPress core doesn't handle the post states in right way as I said a above .: a - Try to edit a closed topic from the back-end , You will be surprised that the submit button text is ""Publish"" instead of ""Save"" , and even after this ""Publish"" button , the topic being ""Open"" instead of ""Closed"" and you need to close it a again ! ... etc I want from you to be aware about theses problems so we can help WordPress to make this easier to us especially for BuddyPress and bbPress developers . Edit: The first part of item 1b has been extracted to ticket #2978" alex-ye 3498 bbPress logout links point to the previous page by default General normal normal Awaiting Review defect (bug) new 2022-11-11T04:23:33Z 2024-02-21T19:30:16Z "`bbp_logout_url()` claims the following: {{{ * This function is used to filter `logout_url`. If no $redirect_to value is * passed, it will default to the request uri, then the forum root. }}} However, this is incorrect, the code actually does.. {{{ * This function is used to filter `logout_url`. If no $redirect_to value is * passed, it will default to the referrer, then the request uri, then the forum root. }}} This is because the code uses the value of `wp_get_referer()` prior to using the current URI. For a real-world example of this: 1. Visit https://bbpress.org/forums/ and check the logout link in the header, you should see a URL like this: `https://bbpress.org/wp-login.php?action=logout&_wpnonce=...&redirect_to=https%3A%2F%2Fbbpress.org%2Fforums%2F%3Floggedout%3Dtrue` - It correctly refers to `/forums/` because the Trac referer is invalid for a redirect from bbpress.org. 2. Now open a Support Thread, Note the logout URL is still set to `/forums/` (where we just came from). 3. Now click ANY support link, for example, the forum the topic is posted in. NOT the back button. Check the logout link, observe it points to the thread you were just viewing in step 2. The usage of `wp_get_referer()` would only be correct here, if the function was hooked to `logout_redirect` (which is run on `wp-login.php?action=logout`), but instead this is hooked to `logout_url` (`wp_logout_url()`) which means it filters the logout links visible in the toolbar. " dd32 3458 bbpress does not work with twenty twenty two theme General normal normal Awaiting Review defect (bug) new 2022-04-09T20:15:04Z 2024-03-28T02:39:35Z "You just get a blank page - no error, no display - nothing If you create a page with [bbp-forum-index], then that page displays, but anything clicked on it just again goes to a white page." Robin W 3510 bbpress site mobile menu is not working General normal normal Awaiting Review defect (bug) new 2023-01-06T05:13:31Z 2023-01-06T05:13:31Z "bbpress mobile menu toggle is not working below 768px screen. here is recording: [https://share.cleanshot.com/SYtVqmMMCjrcN06HDxSr]" multidots1896 3502 bbpress.org & codex.bbpress.org mobile menu does not close after second time click. General normal normal Awaiting Review defect (bug) new 2022-12-01T12:38:55Z 2022-12-01T12:38:55Z "bbpress.org & codex.bbpress.org mobile menu does not close after a second time click. please check the added below video for a better understanding. URL: https://share.cleanshot.com/Fj1miEEbaZkjoi9wypKe" upadalavipul 3538 blacklist_keys deprecated General normal normal Awaiting Review defect (bug) new 2023-03-10T13:02:19Z 2023-03-10T19:33:24Z "bbpress/includes/common/functions.php line 821 states {{{#!php setup_actions(); } }}} This makes it possible to remove the actions that are hooked by this class. " terresquall 3513 "BBpress Edit user profile page suggestions for ""WCAG accessibility""." General normal normal Awaiting Review feature request new dev-feedback 2023-01-06T07:09:24Z 2024-02-21T19:29:22Z "Hello Team, Today, I checked the bbpress.org site and tried to create a new user profile. But, when I am trying to create my user profile I checked that and found a few WCGA accessibility suggestions for the user form. For better understanding here I have attached its screenshot. [[Image(https://share.cleanshot.com/s19w8xnkVlpVh5DwX8MG)]] Also, let us know your feedback, Thanks," mdviralsampat 2634 Accessibility: Remove title attributes - They serve no useful purpose General - Accessibility normal normal 2.8 defect (bug) new 2014-06-25T13:02:31Z 2016-09-04T07:47:50Z "via Karl Groves bbPress Accessibility Feedback https://gist.github.com/ntwb/c8f99df8a714ed028e2d See also #WP24766 - Title attributes galore. They serve no useful purpose. The title attribute provides a tooltip on certain browsers. Other than that, it is essentially useless. As provided in Wordpress, the title attribute is both redundant and useless, because in most cases, it is a complete duplicate of the link's text. Therefore the tooltip provided is of no value whatsoever. For users of assistive technologies, the title attribute is useless at best and sometimes an annoyance. Users of text-to-speech software who have configured their software to do so will hear the title attribute twice. " netweb 2636 Accessibility: Template Forms - Fieldset General - Accessibility normal normal 2.8 defect (bug) new 2014-06-25T13:21:43Z 2014-09-09T19:27:35Z "via Karl Groves bbPress Accessibility Feedback https://gist.github.com/ntwb/c8f99df8a714ed028e2d Fieldset is generally best reserved for cases where you need to disambiguate sets of similarly named fields and/ or where clarification of the label is need. Perfect use cases would be shipping address vs. billing address. Screen readers usually read the legend before each label. So, for instance: > ""Create New Topic in “Developers – General” [pause] Topic Title (Maximum Length: 80)"" This is pretty verbose and, in this case, not necessary, because it is pretty obvious what the purpose of the form is. A heading is better: >

    Create New Topic in “Developers – General”

    Current: {{{ #!text/html
    Create New Topic in “test” ... }}} " netweb 2638 Accessibility: Template Forms - textarea's should use aria-label General - Accessibility normal normal 2.8 defect (bug) new 2014-06-25T13:31:03Z 2015-06-20T03:43:29Z "via Karl Groves bbPress Accessibility Feedback https://gist.github.com/ntwb/c8f99df8a714ed028e2d Aria-label used here, too. No real need for a visual label Proposed: {{{ #!text/html }}} Current: {{{ #!text/html }}}" netweb 2632 Accessibility: Template Forms – fix HTML label and select ID’s and names General - Accessibility normal normal 2.8 defect (bug) new 2014-06-25T12:38:19Z 2014-09-09T19:27:35Z "via Karl Groves bbPress Accessibility Feedback https://gist.github.com/ntwb/c8f99df8a714ed028e2d Various instances in the template forms ''label [for]'' elements do not match the ''select [id]'' elements. " netweb 2635 Accessibility: Templates - Breadcrumbs General - Accessibility normal normal 2.8 defect (bug) new 2014-06-25T13:09:07Z 2017-09-20T02:22:29Z "via Karl Groves bbPress Accessibility Feedback https://gist.github.com/ntwb/c8f99df8a714ed028e2d Suggested breadcrumb markup Note: The stuff in the breadcrumb separator span should be CSS generated content. In the following model it'd be: `.bbp-breadcrumb ul li a::after{ content: ' ›'; }` Proposed: {{{ #!text/html
    }}} Current: {{{ #!text/html

    Home Forums Developers – General

    }}}" netweb 2991 Back end revisions bugs and enhancements General - Administration normal normal Future Release defect (bug) new 2016-09-07T00:42:01Z 2016-11-12T22:27:27Z "Various back end revisions enhancements should be made: * Moderators should be able to see the list of revisions in the ""Revisions"" metabox, currently they can only see the number of revisions and link to the revisions browser via the ""Revisions"" item in the ""Publish"" meta box, when clicking the ""Browse"" link e.g `/wp-admin/revision.php?revision=2636` from the revisions item in the ""Publish"" metabox nothing happens, moderators should be able to compare these revisions. * Per forum moderators should also see the same for forums they can moderate * Forums should be display the number of revisions and link to the ""browse"" revisions functionality in the ""Publish"" meta box, currently revisions are only displayed in the ""Revisions"" meta box * The ""Revisions"" metabox, and revisions item in the ""Publish"" meta box are not displayed when there is 1 revision, these metaboxes do not display anything until there are 2 revisions. * Each revision in the revisions metabox should also display the ""revision reason"" which is displayed in the topic or reply on the front end Here's image of the current state of revisions and metaboxes for forums, topics, and replies: [[Image(https://cldup.com/PM4nZ226_T.png)]]" netweb 1683 "Dashboard ""Right Now"" counts don't correctly use plurals" General - Administration 1.1-alpha normal normal Future Release (Legacy) defect (bug) new 2011-11-09T21:49:16Z 2012-06-04T18:29:48Z "[2802] changed the way the counts were created to call `number_format` on each count first, then pass the formatted number to `__ngettext`. This causes `__ngettext` to incorrectly pick plurals when the format includes punctuation like a comma. Example: the dashboard says I have ""1,416 topic"", but ""6,069 posts."" Since `__ngettext`'s third argument is an integer, the comma inserted by `number_format` is screwing up the plural selection. Instead of, for example: {{{ $rn_topics = number_format( get_total_topics() ); $rn_topics = sprintf(__ngettext('%s topic', '%s topics', $rn_topics), $rn_topics ); }}} it needs to be: {{{ $rn_topics = get_total_topics(); $rn_topics = sprintf(__ngettext('%s topic', '%s topics', $rn_topics), number_format($rn_topics) ); }}}" zerocrates 3006 Moving posts to their own topic needs forum options General - Administration 2.3 normal normal Future Release defect (bug) new 2016-10-01T20:36:52Z 2017-03-03T16:08:04Z "When moving a reply in a thread to its own topic, you only get the option of changing the title of the new thread. The current wording is `New topic in My Awesome Forum titled: Moved: Reply To: Some Thread` where everything after `titled` is a textfield. This should ideally be `New topic in titled `, if not you end up needing to edit the topic again immediately after moving it." Clorith 1323 Topic counts are off when posts are spammed and deleted General - Administration 1.1-alpha normal normal Future Release (Legacy) defect (bug) new 2010-08-05T12:36:36Z 2011-09-20T22:35:04Z "Steps to reproduce - Create a sub-forum Post in the forum Spam the post (or post the topic as a bozo) Delete the topic Topic count will decrease by 1, even though the spammed topic wasn't included in the count. If I had to guess I'd point to this as the culprit in bb_delete_post if ( 0 == $old_status ) { bb_update_topicmeta( $topic_id, 'deleted_posts', $topic->deleted_posts + 1 ); $bbdb->query( $bbdb->prepare( ""UPDATE $bbdb->forums SET posts = posts - 1 WHERE forum_id = %d"", $topic->forum_id ) ); } else if ( 0 == $new_status ) { bb_update_topicmeta( $topic_id, 'deleted_posts', $topic->deleted_posts - 1 ); $bbdb->query( $bbdb->prepare( ""UPDATE $bbdb->forums SET posts = posts + 1 WHERE forum_id = %d"", $topic->forum_id ) ); } Since there's nothing there to handle status 2, for spam. " mrmist 3336 Unable to assign an anonymous topic/reply to registered user General - Administration normal major Future Release defect (bug) new 2020-02-09T17:01:27Z 2023-11-17T20:14:05Z "When editing a topic or reply of an anonymous user, the UI makes it impossible to re-assign the authorship of that content to a newly registered user. This is problematic for installations that allow anonymous posting, and also allow open registration, as it makes it impossible to reassign previously anonymous content to a newly registered user." johnjamesjacoby 1838 Add option to move topics to other forums in the Bulk Edit settings General - Administration 2.0 normal normal Future Release enhancement new 2012-06-01T04:35:22Z 2017-07-06T19:08:21Z Make possible to move a lot of topics to other forums adding some settings to Bulk Edit. alexvorn2 1439 Admin Bar Support General - Administration normal normal Future Release enhancement new 2011-01-05T14:59:12Z 2013-08-29T00:23:58Z I think we should add some type of specific admin-bar menu in for the plugin in 3.1. What exactly that entails is up for debate, but it'd be great to see something more than the default post type links. anthonycole 1148 Better Bozo Notfication on Dashboard General - Administration normal minor Future Release (Legacy) enhancement new 2009-07-13T02:12:39Z 2023-11-17T20:13:08Z "Perhaps it might be helpful to add a better notification system to the bbPress Dashboard when a new user has been automatically marked as a bozo. It is not very easy to see when this happens (especially for those new to bbPress), and new forum posters will be frustrated if they are mistakenly marked as bozos and no one notices and fixes their status. How about an orange notification button popping up next to the ""Users"" botton on the left side of the dashboard similar to how Wordpress notifies users that a new plugin is available or comments need to be approved? Example: Orange ""1"" button if someone just got marked as a bozo. Perhaps once clicked on a list would show up with the people that have been marked as Bozos and not acted on (Similar to Comment Moderation). One would then have the options of ""Keep As Bozo"" or ""Un-Bozo"". This way the site admin will always know if someone has been flagged and easily be able to keep tabs on things." grassrootspa 1298 Better post author layout management General - Administration normal normal Future Release (Legacy) enhancement new has-patch 2010-06-26T22:10:25Z 2013-08-29T00:25:33Z "With so many plugins trying to override each other and change post_author_title to insert things that aren’t the post author’s title, it just makes sense to let users choose where everything goes. It's also easier on forum admins that don't know how to use PHP or don't want to edit their theme's files, but want to change the layout of the post author box. It's simple for a plugin or theme to work both ways: {{{ if ( function_exists( 'bb_post_author_layout' ) ) { // Old logic, same as always. } else { // THEMES: bb_post_author_layout(); // PLUGINS: function my_plugin_section_foo() { echo 'Foo'; } function my_plugin_section_bar() { echo 'Bar'; } function my_plugin_post_author_sections_add( $sections ) { $sections[] = 'my_plugin_section_foo'; $sections[] = 'my_plugin_section_bar'; return $sections; } add_filter( 'bb_post_author_layout_sections', 'my_plugin_post_author_sections_add' ); } }}}" Nightgunner5 1723 Bulk actions for forums General - Administration 2.0 normal normal Future Release enhancement new has-patch 2012-01-20T10:10:20Z 2015-06-14T17:01:29Z I think bulk actions for forums could be improved. It is not possible to change multiple forums from public to hidden for example. ChantalC 1394 Quick Edit forums and topics on dashboard General - Administration normal normal Future Release enhancement new reporter-feedback 2010-12-07T10:03:55Z 2024-03-27T06:08:59Z "1) When editing forum title or forum slug on ""Quick edit"" on administration (wp-admin/edit.php?post_type=bbp_forum) and when i click ""update"" i get msg ""You are not allowed to edit this post"" i am login as admin. 2) On administration topics (wp-admin/edit.php?post_type=bbp_topic) i havn't ""Quick edit"" option like on forum admin ( large forum need this to administrate quickly multiple topics ...) " dudd 2275 Quick access the parent topic from the reply edit screen in the admin General - Administration trunk normal normal Future Release enhancement new has-patch 2013-03-23T05:48:55Z 2013-11-06T20:47:56Z "Two options: 1) Add a 3rd button in the permalink row: http://screenshots.mzaweb.com/kXVU It's a bit hacky to get that button placed there with the current available filters in core. 2) http://screenshots.mzaweb.com/kXW8" MZAWeb 3480 Same name for two menu entries General - Administration normal trivial Awaiting Review enhancement new 2022-09-01T08:00:47Z 2022-09-01T08:00:47Z "Two menu entries have the same name and appear one after another: https://github.com/bbpress/bbPress/blob/trunk/src/includes/admin/classes/class-bbp-admin.php#L485-L505 Maybe they should be named ""Welcome to bbPress"" and ""Credits"" in order to avoid confusion. See https://user-images.githubusercontent.com/167611/187854279-b48d273b-56b0-40a3-9919-0a312180978b.png" zaerl 3403 Support the Gutenberg Block Editor. georgestephanis General - Administration normal normal Under Consideration enhancement assigned has-patch 2020-10-05T16:44:26Z 2024-03-20T01:00:47Z "Very much a work in progress, but this issue's goal is to add support for all existing bbPress shortcodes as blocks in the block editor. https://codex.bbpress.org/features/shortcodes/" georgestephanis 1721 Moderator control panels General - Administration 2.0 normal normal Future Release task (blessed) new 2012-01-17T20:35:06Z 2019-05-22T07:47:44Z "I think the ability to keep non-admins out of the scary admin area of WordPress is key to Moderator happiness. Many other forum projects include a 'control panel' where Moderators are able to perform bulk actions and edits to several topics and replies at a time. WordPress provides a built in admin panel for this via wp-admin, but it'd be great to include this in the theme for easy Moderation of many items at a time. A quick and dirty list of what it will take to build this: * ""/moderate"" rewrite rules for forums and topics * Template edits to provide checkboxes, drop downs, and forms needed for bulk actions * Handlers for bulk actions, which could be wrappers for existing single edit functions as a first pass * Integration with the existing 'moderate' capability * !BuddyPress Group Forum integration. See #1669." johnjamesjacoby 2663 Hidden forum posts not advertising their correct status General - Content Creation 2.5.4 normal normal Future Release defect (bug) new 2014-07-22T09:36:53Z 2014-09-08T20:53:27Z "I noticed my Hidden forum posts where showing up in my sitemap (generated with the 'Google Sitemap' plugin). Although visiting the actual posts is protected by returning a 404 error, the slug names expose confidential information in the sitemap and they should not be included. Google may also not like sitemaps which point to 404s. I had filed a bug report with the Google Sitemap plugin, but they claim it is a bbPress bug, so I wanted to file it here, specifically they say: ""The sitemap is updated when the post is updated. In this case the bbPress post type does not reflect the status of the post (for example, if it is Private or Hidden) in standard hooks, that is initially the forum is registered as Public when bbPress is created, also if you update it, the standard status in the standard hooks is not changed. For this reason the sitemap cannot determine the status of the bbPress forum correctly and includes the link to the sitemap.""" stonemonk 3522 In mobile size, content is being cut off. General - Content Creation normal normal Awaiting Review defect (bug) new needs-refresh 2023-02-03T12:55:38Z 2023-02-03T12:55:38Z "When we open [https://bbpress.org/blog/2013/10/introducing-stephen-edgar/] page on a mobile device, the content is cut off. Because of this, the design of the page is broken. Page Link => [https://bbpress.org/blog/2013/10/introducing-stephen-edgar/]" aezazshekh 2547 Reply Form visual tab blank when using the tinymce=> true argument General - Content Creation 2.5.3 normal normal Future Release defect (bug) new reporter-feedback 2014-02-16T19:26:20Z 2015-03-18T05:50:32Z "I was noticing that when you click on the reply link to an existing replay the visual tab goes blank and is inaccessible. The Text tab works fine however. I realize this is not longer enabled by default and is introduced either via a plugin or setting the tinymce => true argument when calling the function. I was unable to find any apparent js errors which would cause this and fixed it with a crude call to the tinyMce methods to remove and replace the controls. I have attached the patch with what I was able to get to work. Maybe this will be of some help." Mat Lipe 1720 Add resolved and not resolved option in the forms General - Content Creation 2.0 normal normal Future Release enhancement new 2012-01-17T15:55:30Z 2018-08-14T03:16:01Z "To built in the option to mark topics resolved or not resolved in reply and topic form. I think this is a must feature for the plugin as most of users use bbPress for support forums. And allow to create custom options in the form if it is not available yet - I tried to do by myself but with no result." alexvorn2 3359 Allow anonymous users to edit their content (for N minutes after posting) General - Content Creation normal normal Awaiting Review enhancement new has-patch 2020-03-26T17:45:27Z 2020-03-26T17:45:27Z "This patch extends to anonymous users the ability to edit their topics and replies, if and when the existing ''Editing'' settings allow that. " dontdream 2313 Allow users to upload/insert images using TinyMCE General - Content Creation normal normal Future Release enhancement new 2013-04-22T21:11:58Z 2015-05-20T17:32:22Z Member can insert an image by URL like now and: uploading from their computer via uploader to insert the image in the content. Possibility to set size and align. tbermudas 1767 Quick quotes for replies General - Content Creation 2.0 normal normal Future Release enhancement new 2012-03-02T15:38:11Z 2015-02-01T10:48:07Z Most forum software have the facility to clip quotes from previous post with the click of a button. Would be nice to have this in bbPress. sooskriszta 1623 Send user roles along to Akismet for better handling of submitted comments General - Content Creation 1.1-alpha normal normal Future Release (Legacy) enhancement new has-patch 2011-09-02T14:29:36Z 2011-09-20T22:46:23Z The Akismet folk have suggested that adding user roles to the info submitted to Akismet would allow them to do a better job of checking comments for spam. The forthcoming patch adds the appropriate info. dllh 2133 add pre tag buttom to fancy html editor of the reply and topic form General - Content Creation trunk normal normal Future Release enhancement new 2012-12-27T02:28:05Z 2012-12-27T03:22:48Z QTags.addButton( 'my_id_pre', 'pre' ... etc alexvorn2 3527 Padding should be added on all four sides for better design. General - Content Creation normal normal Awaiting Review idea new 2023-02-08T13:39:45Z 2024-02-21T19:34:01Z "The content box on [https://bbpress.org/download/] page should have some padding for better design. Page Link => [https://bbpress.org/download/]" aezazshekh 2677 Pingbacks/Trackbacks are enabled for topics and forums General - Integration normal normal 2.8 defect (bug) new 2014-09-03T12:28:17Z 2016-05-02T05:43:44Z "A couple of recent reports from the bbpress.org forums people are getting pingback/trackbacks to forums and topics: http://bbpress.org/forums/topic/comments-on-topics/#post-151748 http://bbpress.org/forums/topic/disable-pingbacks/ Needs further investigation as there are numerous instances in bbPress where these are supposed to be closed for the three custom post types and also in the converter/import. " netweb 3041 RfC: Integrating Buddypress favorite system (aka like system) with BBPress General - Integration trunk normal normal Future Release idea new reporter-feedback 2017-01-15T23:54:31Z 2017-06-04T22:13:45Z "Hi all, I've integrated the buddypress favorites (a.k.a. activity like) function with BBPress. I believe this hasn't done before, at least, I couldn't find a solution. I think this needs to be standard functionality and is nice integration feature between the two systems. 1. determine of Buddypress is installed. 2. add an option to the admin area ""Forums Settings under ""Buddypress Integration"", ""Enable Favourites"" 3. if 1 and 2 is true add a like button to the bbp-meta area in the bbp-reply-header left and next to ""edit""; 4. only show ""like"" when logged in; 5. call the resulting function in loop-single-reply.php See this thread for the ""documentation"". https://bbpress.org/forums/topic/integrating-buddypress-favorite-system-aka-like-system-with-bbpress/ @netweb, I will try to make a start to implement it myself, this would be my first contribution however, so anyone who get's the job done quicker, be my guest. " mth75 2935 Add a repair tool to repair `ping_status` for forum, topic , and reply post types General - Integration normal normal 2.8 task (blessed) new 2016-05-02T05:43:28Z 2016-05-02T05:43:28Z "A repair tool should be added to reset and repair bbPress `ping_status` after either #2677 and #1430 " netweb 1430 Show pingbacks on topic page MZAWeb General - Integration normal normal 2.8 task (blessed) assigned needs-refresh 2010-12-29T12:33:17Z 2016-05-02T05:43:51Z " 1. We can't display pingbacks within the replies loop because replies are posts while pingbacks are comments, so we would probably need to display the pingbacks below the replies. 2. Also add an option to disable pingbacks or use the existing one." GautamGupta 3462 Need to hide the bullets on the list for the Tabs General - Performance normal normal Awaiting Review defect (bug) new 2022-05-11T07:20:37Z 2024-03-17T13:10:50Z "Need to hide the bullets on the list for the Tabs URL: https://bbpress.trac.wordpress.org/prefs/notification" umesh84 2894 Replace direct SQL query in `bbp_get_all_child_ids()` with `WP_Query()` object General - Performance 2.0 normal normal Future Release defect (bug) new 2015-12-02T09:04:20Z 2015-12-02T09:04:20Z "Via https://bbpress.trac.wordpress.org/ticket/1799#comment:37 Per the original patch proposals ([attachment:1799.3.patch], [attachment:1799.2.patch], and [attachment:1799.patch]) was to also replace direct MySQL queries in `bbp_get_all_child_ids()` with `WP_Query()` objects as per [5954]. Currently this cannot be achieved because `WP_Query()` ignores bbPress `spam` custom post status (possibly others) See: [https://codex.wordpress.org/Class_Reference/WP_Query#Status_Parameters WP_Query#Status_Parameters] and [https://wordpress.org/support/topic/wp_query-returning-different-results-depending-on-browser?replies=16 wordpress.org/support/topic/wp_query]" netweb 1643 Admin style (RTL) 7i7GRiFFiN General - UI/UX 1.1-alpha normal normal Future Release (Legacy) defect (bug) new 2011-09-21T16:47:39Z 2011-10-01T00:13:32Z "'''H2 tag need to change something:''' [[BR]] font-family: Tahoma, ""Times New Roman""; font-style: normal; [[BR]] '''And menu need to change it UI:''' [[BR]][[BR]] ul#bbAdminMenu li.bb-menu a { font-family: Tahoma, ""Times New Roman""; font-weight: bold; } [[BR]] '''And footer too:''' [[BR]][[BR]] div#bbFoot { font-family: Tahoma, ""Times New Roman""; font-style: normal; }" 7i7GRiFFiN 1677 form fields with guest posters adds extra information General - UI/UX 2.0 normal normal Future Release defect (bug) new reporter-feedback 2011-11-04T22:46:56Z 2012-05-11T01:04:50Z "Setup: 1. turn on allow guest posting in bbpress 2. create a post as a guest 3. login as an admin 4. click to edit the topic created in #2 Problem: You will not only see the username and email address of the guest who posted the topic, but will also see other information appended to both fields. It seems to be some type of browser cache as the extra names appended are different across browsers. screenshot: http://awesomescreenshot.com/0dfnok6b9 This is happening on a 100% virgin bbpress 2x nightly with wp 3.3beta2 zero plugins" anointed 3471 in responsive issue with the page headers. General - UI/UX normal normal Awaiting Review defect (bug) new 2022-06-15T12:07:16Z 2024-03-17T13:09:17Z "Check this url :- https://bbpress.trac.wordpress.org/report check after the dimension 730 to 640 design is breaking." nidhidhandhukiya 3264 Forum > Create New Forum > Missing bottom padding for the div johnjamesjacoby General - UI/UX 2.5.14 normal minor Future Release enhancement assigned reporter-feedback 2019-10-11T12:00:31Z 2019-11-13T06:41:06Z "Follow the below steps to replicate the issue: 1. Go to Dashboard 2. Click on Forum > New Forum 3. Check the preview block, it needs bottom padding Compare the actual.png screenshot with expected.png screenshot find the difference." krupajnanda 1611 Allow customize translations of string Forums Locale - i18n/l10n normal normal Future Release defect (bug) new 2011-08-26T21:05:47Z 2013-01-03T10:32:46Z "String Forums can be translated a little differently and allowing context you can help translators to customize these strings (Forums as options page x Forums as CPT). Patch attached." pavelevap 2249 TinyMCE RTL Support Locale - i18n/l10n 2.2.3 normal normal Future Release defect (bug) new 2013-03-08T02:29:32Z 2013-03-09T09:01:56Z "When using a RTL language TinyMCE Editor for Topics & Replies does not use RTL input. Originally reported here http://bbpress.org/forums/topic/rtl-bug-in-new-topic-box" netweb 3533 The top nav menu doesn't look good on mobile responsive. Site normal normal Awaiting Review defect (bug) new dev-feedback 2023-02-16T05:49:12Z 2023-02-16T05:49:12Z "Hello Team, I have checked this [https://bbpress.trac.wordpress.org/] site and found that its top nav menu doesn't look good on mobile responsive. Screenshot: [[Image(https://share.cleanshot.com/k1KSK0zDtg4VqxMS6Rf6)]] Thanks," viralsampat 3541 Content over issue Site - Codex normal normal Awaiting Review defect (bug) new 2023-03-23T12:21:10Z 2023-03-23T12:21:10Z "Content overflow issue in the mobile devices. **Page URL:-** https://codex.bbpress.org/themes/theme-compatibility/ **Issue Screenshot:-** https://share.cleanshot.com/RRPPVSQL68CJrxRcyY7b" baroliyamayur 3549 Content overflow issue Site - Codex normal normal Awaiting Review defect (bug) new 2023-05-01T11:28:10Z 2023-05-01T11:28:10Z "Content overflow issue in iPad and Mobile devices **Page URL:-** https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum-part-2/ **Issue Screenshot:-** https://share.cleanshot.com/pzW2RtwyjQrKZZbyl5tP" baroliyamayur 3499 Content overflow issue because of footer Site - Codex normal normal Awaiting Review defect (bug) new has-patch 2022-11-11T08:45:29Z 2024-02-21T19:30:11Z "Steps to reproduce the issue :- 1. Open URL :- [https://codex.bbpress.org/] 2. Check between 930 to 781 3. You can able to see overflow in footer. We have ipad air device as a width of 820 px so we need to resolve this." nidhidhandhukiya 3465 Need to add spacing bbpress about links box Site - Codex normal normal Awaiting Review defect (bug) new has-patch 2022-05-26T09:26:46Z 2024-03-17T13:09:50Z "Need to add spacing bbpress about links box in below link. [https://bbpress.org/about/]" multidots1896 3511 Need to add spacing in about us page sidebar johnjamesjacoby Site - Codex normal normal bbPress.org defect (bug) assigned has-patch 2023-01-06T06:18:19Z 2024-02-21T19:26:27Z "In about page, we need to add spacing in about us page sidebar. screenshot:[https://share.cleanshot.com/zrhzW5HCCqrgvhjm7D5k]" multidots1896 3550 Page scrolling issue in mobile devices Site - Codex normal normal Awaiting Review defect (bug) new 2023-05-01T11:40:40Z 2024-02-21T19:26:43Z "Page scrolling issue in mobile devices **Page URL:-** https://codex.bbpress.org/bbpress-styling-crib/ **Issue Screenshot:-** https://share.cleanshot.com/vKWLyPSCDpSXVBthwqxc" baroliyamayur 3296 Some Errors i found on codex.bbbpress.org tested on device Nokia 2 Site - Codex normal normal bbPress.org defect (bug) new 2019-11-28T12:06:55Z 2019-11-29T13:45:36Z some fonts overlap to each other passoniate 3482 The contributor's link is missing in the Article Contributors Site - Codex normal normal Awaiting Review defect (bug) new 2022-09-21T10:11:54Z 2022-09-22T08:33:52Z "When we click on ""Article Contributors"" in the footer of bbPress, the link to the contributor is missing. Site Link => [https://codex.bbpress.org/]" aezazshekh 3484 The login user's image is not in the proper circle shape on a mobile screen size. Site - Codex normal normal Awaiting Review defect (bug) new has-patch 2022-09-28T09:43:58Z 2022-09-28T09:47:01Z "The login user's image is not in the proper circle shape when we open [https://codex.bbpress.org/] site on a screen smaller than 460 pixels. Site Link = [https://codex.bbpress.org/]" aezazshekh 3483 Titles are getting overlapped in mobile size Site - Codex normal normal Awaiting Review defect (bug) new 2022-09-21T11:13:58Z 2022-09-21T11:13:58Z "When we view [https://codex.bbpress.org/] this page in mobile mode, the titles overlap. Because of this, the design of the page is deteriorating in mobile size. Page Link => [https://codex.bbpress.org/]" aezazshekh 3567 When i click on create new page it show me warning message tab. Site - Codex normal normal Awaiting Review enhancement new 2023-06-08T07:29:04Z 2024-02-16T09:47:30Z "When I click on ""Create New Page"" on this page [https://codex.bbpress.org/] it showed the warning message tab if this is not for all users I suggest removing this for all users and only showing this who have privileged access to create a new page. Issue screen recording video : [https://share.cleanshot.com/Y6LxXLZrMd1SmV6ZJq20]" himshekhar07 2516 bbPress WXR Sample Data Site - Codex normal normal Future Release task (blessed) new 2014-01-17T08:15:21Z 2020-01-25T19:12:57Z "A ticket to store bbPress WXR Sample Data This first iteration contains the following: * bbPress Forums Category * Select bbPress Public Forum * bbPress Forum Standard Topic & replies * bbPress Forum Anonymous Topic & replies * bbPress Forum Subscription Topic & replies * bbPress Forum Pending Topic & replies * bbPress Forum Favorite Topic & replies * bbPress Forum Super Sticky Topic & replies * bbPress Forum Sticky Topic & replies * bbPress Forum Closed Topic & replies * bbPress Forum Trash Topic & replies * bbPress Forum Spam Topic & replies * Select bbPress Hidden Forum * Select bbPress Private Forum * Select bbPress Closed Forum Also a group of forums and categories based on the [https://en.wikipedia.org/wiki/Nested_set_model Nested set model]: * Clothing (Category) * Men's (Category) * Suits (Category) * Slacks (Forum) * Jackets (Forum) * Ties (Forum) * Women's (Category) * Blouses (Forum) * Dresses (Category) * Evening Gowns (Forum) * Sun Dresses (Forum) * Skirts (Forum)" netweb 3531 """Get this plugin"" section is out of the container in the responsive design" Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-02-14T14:21:03Z 2023-02-14T14:21:03Z """Get this plugin"" section is out of the container in the responsive design in bbpress site. Please check the below URL. **Page URL:-** https://bbpress.org/forums/topic/forum-problem-2/ **Issue Screenshot:-** https://share.cleanshot.com/KXx3cjK6TWTz1F3wc7Fz" baroliyamayur 3521 After Search result, text is overlapping on the searchbar in bbpress site Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-02-03T07:48:00Z 2023-02-03T07:48:00Z "After Search result, text is overlapping on the search bar in bbpress site. Please check the below URL. **Page URL:-** https://bbpress.org/forums/ **Issue Screenshot:-** https://share.cleanshot.com/xhcZFjXmCPgcqcsxMKWm" baroliyamayur 3456 Article contributor name not proper display on hover Site - bbPress.org normal normal Awaiting Review defect (bug) new 2022-03-24T13:15:45Z 2024-03-28T02:39:40Z "When any user hover over an item in the first contributor Photos contributor name not Proper display. URL:https://codex.bbpress.org/themes/theme-compatibility/" umesh84 3569 Container Spacing in all devices. Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-06-15T09:59:01Z 2024-02-22T22:31:08Z "Container Spacing in all devices. **Page URL:-** https://bbpress.org/forums/topic/plugin-bbp-g-plus-one/ **Issue Screenshot:-** https://share.cleanshot.com/86g2Shgncfwkn8l3d4Vv" baroliyamayur 3573 Content overflow issue Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-06-21T12:33:51Z 2023-08-17T20:24:00Z "Content overflow issue **Page URL:-** https://bbpress.org/blog/2011/08/bbpress-2-0-rc-4/ **Issue Screenshot:-** https://share.cleanshot.com/lndWhLCWKCz6XXgds763" baroliyamayur 3574 Content overlapping issue in Desktop and Mobile both devices Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-06-23T05:11:18Z 2023-08-17T20:23:24Z "Content overlapping issue in Desktop and Mobile both devices. **Page URL:-** https://bbpress.org/blog/2011/08/bbpress-2-0-rc-4/ **Issues Screenshot:-** **Desktop:-** https://share.cleanshot.com/r2Mnbn4v7vGhcmfxGrfL **Mobile:-** https://share.cleanshot.com/h66tS1sbP1b4RBJsRjgl" baroliyamayur 3539 Content overlapping issue in mobile devices. Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-03-12T11:48:30Z 2023-03-12T11:48:30Z "Content overlapping issue in mobile devices. **Page URL:-** https://codex.bbpress.org/ **Issue Screenshot:-** https://share.cleanshot.com/NM0cB6BMMqhQTSzpCCgp" baroliyamayur 3515 Due to a lack of padding in the titles on the right side, the design is deteriorating. Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-01-19T12:04:26Z 2023-01-19T12:04:26Z "The titles on the right side of [https://bbpress.org/about/] page do not have padding, which spoils the design. URL => [https://bbpress.org/about/]" aezazshekh 3526 "Even after clicking on the home page, the active menu is not getting removed in the ""Support"" menu." Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-02-06T12:56:54Z 2023-02-06T12:56:54Z "Even when we are on the home page of the site [https://bbpress.org/], the active menu is not getting removed from the ""support"" menu. Issue Video Link => [https://share.cleanshot.com/0SdBJSVZSChQ0hTGCVyY]" aezazshekh 3548 Footer spacing issue in iPad and Mobile devices Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-05-01T10:49:16Z 2024-02-21T19:39:53Z "Footer spacing issue in iPad and Mobile devices **Page URL:-** https://bbpress.trac.wordpress.org/wiki/TracGuide **Issue Screenshot:-** https://share.cleanshot.com/c06jM98hq2F6BwSNFdHM" baroliyamayur 3552 Gravatar name is little bit visible in small device Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-05-03T14:22:01Z 2024-02-21T19:39:56Z "On the desktop, the gravatar and name both are visible properly. But in responsiveness, it is visible a little bit. If the purpose is to hide in mobile or small devices then it needs to hide it completely. [https://bbpress.org/forums/] video: [https://share.cleanshot.com/fbHyZvfB6rC3lzm3QzLY] " himshekhar07 3512 Hamburger menu is not working as expected Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-01-06T06:45:19Z 2023-01-06T06:45:19Z "On this page [https://bbpress.org/download/] after clicking on hamburger menu on top left it will open all menus but after clicking it again on it will not get close. I am attaching video for more clarification: [https://share.cleanshot.com/3KQJ8r6NBSyP257txZKb]" himshekhar07 3481 Headline section is not updated Site - bbPress.org normal normal Awaiting Review defect (bug) new 2022-09-07T08:05:36Z 2024-02-21T19:25:31Z The image in the headline section of the main page of bbpress[https://bbpress.org/] is not updated. the image shows the old wordpress.org site view. The view of current wordpress.org is different. jakariaistauk 3472 Iframe Issue in Responsive Site - bbPress.org normal normal Awaiting Review defect (bug) new has-patch 2022-06-22T09:54:48Z 2024-03-17T13:09:04Z "Hello Team, In Responsive (From 650px and below) the iframe is not showing proper and getting cut from right side in below page: **Page URL:** https://bbpress.org/forums/topic/settings-for-my-forum/ For Better Understanding I provide screenshot. Thanks." varshil151189 3542 Image width issue in mobile devices Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-03-30T14:41:53Z 2023-03-30T14:41:53Z "Image width issue in mobile devices. **Page URL:-** https://bbpress.org/ **Issue Screenshot:-** https://share.cleanshot.com/RQJ3SVJZHXYyfMKVtNVW" baroliyamayur 3534 Lists of table items are flowing out of the table. Site - bbPress.org normal normal Awaiting Review defect (bug) new has-patch 2023-02-17T14:06:50Z 2023-02-20T13:12:24Z "When we open this page in mobile screen size, then the lists-items of the table of this page are flowing out of the table. Page Link => [https://bbpress.trac.wordpress.org/wiki/TitleIndex]" aezazshekh 3485 Logo is not coming proper in IPad Pro Site - bbPress.org normal normal Awaiting Review defect (bug) new has-patch 2022-10-03T06:45:46Z 2022-10-03T06:47:17Z "Hello Team, While checking in responsive device, I found that logo is not coming properly in IPAD Pro device. PFA the screenshot for the same. URL: https://bbpress.org/ Thank you." varshil151189 3382 Mobile Toggle Menu is not working johnjamesjacoby Site - bbPress.org normal normal bbPress.org defect (bug) assigned 2020-07-02T07:23:55Z 2020-07-04T11:09:12Z "When we click on mobile toggle menu then we are not able to close the menu. Please check the video in the attachment. " jatindevani 3547 Mobile menu button design break in responsive devices Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-05-01T10:41:09Z 2024-02-21T19:37:51Z "Mobile menu button design break in responsive devices **Page URL:-** https://bbpress.trac.wordpress.org/timeline **Issue Screenshot:-** https://share.cleanshot.com/X4BjpJ1zsFWwHQ4PKTX2" baroliyamayur 3553 Page inner scroll functionality not working proper and extra arrow display in left Contents section. Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-05-04T14:02:15Z 2023-05-04T14:02:15Z "I have reviewed the https://codex.bbpress.org/features/subscriptions/ page and found the Inner scroll functionality not working properly( does not properly scroll in to target position ) and the extra arrow display in the left Contents section. Please check the below-attached video for a better understanding of the issues. Video URL: https://share.cleanshot.com/ZKCBqHY8qsf1PBpJ7Qy3 Page URL: https://codex.bbpress.org/features/subscriptions/" upadalavipul 3575 Responsive page design boken. Site - bbPress.org normal normal Awaiting Review defect (bug) new has-patch 2023-07-07T09:24:45Z 2023-08-17T20:22:09Z "Open the URL :- https://bbpress.org/ Check in responsive for example ipad or mobile. You can able to see design is broken. I have attached video for better understanding. Video URL :- https://share.cleanshot.com/p18QJ7F4kvBcc3FMBJHL" nidhidhandhukiya 3554 Search box input hides away behind the header and top nav menu in the mobile responsive. Site - bbPress.org normal normal bbPress.org defect (bug) new dev-feedback 2023-05-09T11:46:04Z 2023-05-09T11:46:04Z "Hello @Team, I have worked on [https://bbpress.trac.wordpress.org/] URL and found one small issue. In the above-mentioned URL, the search box input hides away behind the header & top nav menu in mobile responsive devices. For better understanding here, I have included its video & screenshots. Screenshot: [https://share.cleanshot.com/838ffd68hSV2CW28fmqc] Video: [https://share.cleanshot.com/hbbdtKMZMMYHdbbv60Kd] Thanks," viralsampat 3530 Search functionality is not working properly while searching any word. Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-02-10T12:24:03Z 2023-02-13T02:32:51Z "If you are searching any word in the search bar in the sidebar of this page, then the search functionality is not working properly. Page Link => [https://bbpress.org/plugins/legacy/] Issue Video Link => [https://share.cleanshot.com/1KDZBxj1KTk8vxZVgr0Q]" aezazshekh 3560 Spacing issue in **bbp-about-links** section. Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-05-19T06:21:38Z 2023-05-19T06:21:38Z "Spacing issue in **bbp-about-links** section. **Page URL:-** https://bbpress.org/about/ **Issue Screenshot:-** https://share.cleanshot.com/gK16dQsDcXDRkZYGwtSc" baroliyamayur 3545 Spacing issue in Showcase section in iPad device. Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-04-28T05:38:28Z 2024-02-21T19:42:56Z "Spacing issue in Showcase section in iPad device. **Page URL:-** https://bbpress.org/ **Issue Screenshot:-** https://share.cleanshot.com/z7h3vsLsmWgCDBx8w8fh" baroliyamayur 3546 Spacing issue in nav menu in mobile device. Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-04-28T06:12:12Z 2023-04-28T06:12:12Z "Spacing issue in nav menu in mobile device. **Page URL:-** https://bbpress.trac.wordpress.org/timeline **Issue Screenshot:-** https://share.cleanshot.com/3PTY66nWtxrLNrnFKHLZ" baroliyamayur 3557 Text Overlap Issue Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-05-15T13:04:32Z 2023-05-15T13:04:32Z "In responsive (below 680px), the text overlap issue is coming on the below page. URL: https://bbpress.org/blog/2015/09/2015-bbpress-survey-results/#more-165891 For better understanding, I provide a Screenshot. Thanks." kajalgohel 3514 Text is touching the border not having proper padding and margin. Site - bbPress.org normal normal Awaiting Review defect (bug) new has-patch 2023-01-06T10:07:35Z 2023-01-06T10:28:23Z "On this page [https://bbpress.org/download/] there is no proper padding and margin for two sections. Here is the video for reference: [https://share.cleanshot.com/v9WxdKSN3TPfG851Y62S] I have shown the solution in the video. Here is the code: {{{ .has-very-light-gray-to-cyan-bluish-gray-gradient-background{ padding: 20px; margin-bottom: 20px; } .has-electric-grass-gradient-background{ padding: 20px; margin-bottom: 20px; } }}} " himshekhar07 3535 Text over wrapping issues in the responsive design. Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-03-03T05:52:14Z 2023-03-03T05:52:14Z "I have reviewed the https://bbpress.org/forums/search/test/ page and found the text over-wrapping issues in the responsive design. Please check the attached screenshot. Screenshot: https://share.cleanshot.com/kFnjLP816tlyL9f8BVpw Page URL: https://bbpress.org/forums/search/test/" upadalavipul 3463 Text overlap issue in Home page Site - bbPress.org normal normal bbPress.org defect (bug) new 2022-05-19T10:01:39Z 2024-03-17T13:10:04Z In responsive design(768px and below), the text is overlapping on image. varshil151189 3577 The iframe's overflow is causing issues in responsive design. Site - bbPress.org normal normal Awaiting Review defect (bug) new has-patch 2023-07-31T13:21:38Z 2024-02-16T09:48:13Z "The responsive behavior of the iframe is not handling overflowed content as expected. URL: https://bbpress.org/forums/topic/bbpress-2-6-6/ Thank you..." truptikanzariya 3559 The inner page's smooth scroll is not working properly Site - bbPress.org normal normal bbPress.org defect (bug) new dev-feedback 2023-05-18T21:06:13Z 2024-02-16T09:47:03Z "Hello Team, I have reviewed this **[https://codex.bbpress.org/participate-and-contribute/codex-standards-guidelines/#contributing-to-the-codex]** page and found that its smooth scroll functionality is not working properly and it's not properly reaching to its targeted element. I have attached its video for you to better understand. So, please take a look at my attachment. Issue URL: [https://share.cleanshot.com/BDFyPjb4FPq3NC1dlKQj] Page URL: [https://codex.bbpress.org/participate-and-contribute/codex-standards-guidelines/#contributing-to-the-codex] Thanks," viralsampat 3561 The text is not visible properly Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-05-23T09:03:40Z 2023-05-23T09:06:06Z "The text is not visible properly Page URL:- https://bbpdevel.wordpress.com/ Issue Screenshot:- https://share.cleanshot.com/dcvyP6t7bzT2flj9VpRw" baroliyamayur 3565 There is an issue with the space in the feature list section on the mobile device. Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-06-08T05:26:23Z 2024-02-21T19:39:49Z "There is an issue with the space in the feature list section on the mobile device. **Page URL:-** https://bbpress.org/ **Issue Screenshot:-** https://share.cleanshot.com/rDtgFmpxdf0ZgkLX0MNh" baroliyamayur 3500 Top Header navigation menu content & site footer content sticky in mobile responsive devices Site - bbPress.org normal normal Awaiting Review defect (bug) new dev-feedback 2022-11-15T05:11:04Z 2024-03-20T00:45:15Z "I have checked bbpress site and found that top header nav menu item content is sticky to right and left side in mobile responsive devices. I have checked it into the @media screen and (max-width: 782px) and its working fine. But it is sticky above 782px media screen. For better idea here I have attached its screenshot. Screenshot: https://share.cleanshot.com/N9h6c7oL24Va5Bga5T5d" viralsampat 3566 When click on the feeds sub menu it redirect to code. Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-06-08T07:18:12Z 2024-02-12T17:45:55Z "When I click on the feeds sub-menu on this page [https://bbpress.org/forums/] it redirects to some code. Issue screen recording: [https://share.cleanshot.com/pFS9S9K1cdlKPmRqYXTT]" himshekhar07 3453 avatar image and text issue Site - bbPress.org normal normal Awaiting Review defect (bug) new has-patch 2022-03-21T11:47:22Z 2022-03-22T04:46:58Z "in responsive (782px and below), the user avatar image seen blur and also user name not seen proper as we can see that only first letter is seen after avatar image, which is also not seen full character. url : [https://bbpress.org/forums/] For better understanding I provide the screenshot" kajalgohel 3518 bbPress blog images are not responsive Site - bbPress.org normal normal Awaiting Review defect (bug) new 2023-01-31T14:42:34Z 2023-02-01T01:13:35Z "The page design is getting messed up due to having image in the content of the page in mobile size. Page Link => [https://bbpress.org/blog/2012/07/bbpress-org-refresh/]" aezazshekh 2573 bbpress.org Add bbPress moderaton links to bb-base theme Site - bbPress.org normal normal bbPress.org defect (bug) new dev-feedback 2014-03-26T07:01:20Z 2016-07-30T12:34:17Z "* Add 'Mark User 'xyz' as spammer to user profile `bbp_template_after_user_details` * Add 'Recount Thing' (`bbporg_recount_current_thing`) to `bb_base_single_topic_description` * Add 'Recount Thing' (`bbporg_recount_current_thing`) to `bb_base_single_forum_description` * Maybe extra links to WordPress/BuddyPress profiles" netweb 3468 table overflow issue in responsive. Site - bbPress.org normal normal Awaiting Review defect (bug) new 2022-06-03T08:03:23Z 2024-03-17T13:11:10Z "Go to url:- [https://bbpress.trac.wordpress.org/report/1] check after 1200 to 768 between this dimension the table is having overflow. " nidhidhandhukiya 3450 A lot of white space is coming in tablet and mobile size Site - bbPress.org 2.6.9 normal normal bbPress.org enhancement new has-patch 2022-03-16T07:28:33Z 2024-02-21T19:23:03Z "In the [https://bbpress.org/] site, resize the screen and check it in small screen resolution. White spaces are shown on tablet and mobile screens. Site Link => [https://bbpress.org/] I have created a video of the issue. its link is given below. [https://www.loom.com/share/86311abac96d4491bc05e625de041a59] " aezazshekh 3381 Responsive issue on bbpress.org Home page johnjamesjacoby Site - bbPress.org normal normal bbPress.org enhancement assigned 2020-07-02T07:00:35Z 2020-07-02T14:21:27Z "I found a bbpress homepage responsive issue on mobile devices. Issue page URL - https://bbpress.org/ Screenshot - https://www.screenpresso.com/=1ub0f " rkradadiya 3451 The content of the site in the small size screen of the mobile is coming out of the content box. Site - bbPress.org 2.6.9 normal normal bbPress.org enhancement new has-patch 2022-03-17T06:04:59Z 2022-03-17T06:25:52Z "When you open the [https://bbpress.trac.wordpress.org/] site on small size screen of the mobile. The content of the site on a screen of fewer than 370 pixels is coming out of the content box. Because of this, the design is getting a bit messy. Site Link => [https://bbpress.trac.wordpress.org/] I have created a video of the issue. its link is given below. [https://www.loom.com/share/21805280912f4e9d93904de07c70155f]" aezazshekh 3449 margin issue in footer content Site - bbPress.org normal normal Awaiting Review enhancement new 2022-03-15T13:29:35Z 2022-03-15T13:29:35Z "In ([https://bbpress.trac.wordpress.org/newticket]) page, the footer content should have margin, so that the content is visible properly, right now the content is stick with body. For better understanding I provide the screenshot" kajalgohel 3551 Due to the table on the releases page, the design is deteriorating in mobile size. Site - bbPress.org normal normal Awaiting Review feature request new 2023-05-03T13:30:34Z 2023-05-03T13:30:34Z "Whenever we open [https://codex.bbpress.org/releases/] page on a mobile screen, the design of the page breaks because of the table on this page. Page Link => [https://codex.bbpress.org/releases/]" aezazshekh 2717 "Bug in "" Recalculate private and hidden forums"" repair tool" Tools 2.1 normal normal Future Release defect (bug) new 2014-11-10T10:53:37Z 2015-08-15T10:01:08Z "If I use the ""Recalculate private and hidden forums"" option in the relationship repair tools, users with role ""Participant"" can no longer see the topics in hidden forums. (The topic count listed for each private forum on the Forums page is correct, but when ""Participant"" users visit any individual private forum, they get the ""Oops"" message and see no topics. Moderators and above *can* see the topics.) The topic visibility issue is repaired if you temporarily save each private forum as public, then restore it to private. However, re-using the ""Recalculate private and hidden forums"" tool afterwards will re-create the issue." kona 2431 Missing uninstall hooks and function calls Tools trunk normal normal 2.8 defect (bug) new 2013-09-23T11:37:37Z 2014-09-09T19:27:35Z "Using 2.4, currently `bbp_uninstall()` creates a dedicated hook in `core/sub-actions.php`, but the function itself isn't hooked anywhere. It's only the phpDoc of `bbp_activation()` that reminds us vaguely of a former call to register_uninstall_hook(). Additionally the function `bbp_do_uninstall` has a similar problem, as well as `bbp_delete_user_options`. I tried to find any other 'uninstall' functions, terms or comments in 2.4, but couldn't find any. I do not tend to uninstall bbPress, but I noticed when browsing the source." Offereins 3332 Repair tool for subforum count Tools normal normal Awaiting Review defect (bug) new 2020-02-02T15:28:11Z 2020-02-02T15:28:11Z There seems to be no repair function to recalculate the number of subforums of a forum, so updating the _bbp_forum_subforum_count postmeta of a forum. casiepa 3035 Add a dry-run option to Tools Tools normal normal Future Release enhancement new dev-feedback 2016-12-18T16:48:29Z 2016-12-18T16:48:29Z "In creating additional tools for #2959, it felt like it would be nice to have a dry-run options for the repair & upgrade tools. We may need to extend WPDB to more easily accomplish this, otherwise we'd need to refactor all of our tools with individual dry-run variants, which seems like a lot of work for a universal concept." johnjamesjacoby 3100 System information page for support people Tools normal normal Future Release enhancement new 2017-04-11T11:08:10Z 2017-04-12T08:30:04Z "Working as a moderator on bbPress.org/forums I have to ask a lot: 'What is your WP and bbPress version', 'What is your theme', 'PHP version' ? I think it would be a great idea to have a page inside bbPress that people could just open and copy/paste the info onto the support forum. Proposal: - /wp-admin/tools.php?page=bbp-sysinfo - Data needed: WP version, bbPress version, Theme, PHP version, DB info, plugins installed, site URL (see picture) Code for all of this could be found in my bbP Toolkit plugin as I'm doing the same there." casiepa 2117 Topic Tag Admin Repair Tools Tools 2.2 normal normal 2.8 enhancement new 2012-12-20T07:42:14Z 2017-01-30T06:25:11Z "Currently bbPress 2.x has no 'Repair Tools' for Topic Tags 1. Count tags for every topic 2. Count topics for every tag 3. Remove empty topic tags (i.e Topic Count = 0) bbPress 1.x includes 1. & 2. for re-counts http://bbpress.trac.wordpress.org/browser/tags/1.2" netweb 2782 Make PHPUnit tests work, and make them dependent on BuddyPress netweb Tools normal normal Under Consideration task (blessed) assigned has-patch 2015-03-31T21:32:01Z 2017-05-27T01:30:11Z "I'm seeing a recurrence of #2327 on a client site, and I don't understand bbPress well enough to figure out what's going on without writing some unit tests, but it's not currently possible, so here you go :) The attached patch does the following: - Fixes the bbPress test bootstrap so that it actually loads bbPress - Fixes the bbPress testcases so that it properly installs the (empty) `BBP_UnitTest_Factory` - Provides a bare-bones version of `BBP_UnitTest_Factory_For_Forum`. This is all I needed to debug my specific issue, but you get the idea. - Detects the presence of a BuddyPress checkout, and installs + bootstraps it if found - Loads the BP factory into the `BBP_UnitTestCase` object The patch also includes a couple of tests and a suggested fix for #2327. It looks like the basic problem is bbPress's initial setting of group forum status depends on the forum's having been created inside of the group interface. Forums that are created in any other way - programatically, in my client's case - don't seem to have the proper value set. In the long run, you might want to break this logic out from your `BP_Group_Extension` class and put it somewhere where it'll be enforced in a stricter way. (IMHO, `BP_Group_Extension` classes work best when used only as view/controllers. When used for business logic, you get problems like this one. This is a lesson I have learned the hard way on multiple occasions :) ) Anyway, my suggested fix is airtight, though perhaps it's inefficient. You can take or leave it. Regardless of the #2327 fix, I hope you'll consider adopting the unit test framework, as I personally would be more willing to dive into some of the gnarlier bugs I occassionally come across in bbPress if it were possible to attack them in a TDD fashion." boonebgorges 2301 bbPress Forms Should Display Unfiltered Data Tools - Code Improvements 2.2.3 normal normal Future Release defect (bug) new reporter-feedback 2013-04-12T17:53:55Z 2013-04-12T19:00:53Z "Some bbPress forms like topic-form,reply-form and forum-form display some filtered data, This cause the forms to display worng info. To reproduce this bug: 1- Filter the bbp_get_topic_title and add a any string to the original title. 2- Edit the topic you filtered, You will see that the topic title input display the string you have added in the filter. after debug seems like the bbp_template_include_theme_compat() function using bbp_get_topic_title() to reset the post title, I can't say that is a wrong way, but it has a side effect." alex-ye 2584 Customise link text in paginate_links() for accessibility Tools - Code Improvements trunk normal normal 2.8 enhancement new 2014-04-12T02:25:05Z 2014-09-09T19:27:35Z "WordPress 3.9 introduced `before_page_number` and `after_page_number` arguments for `paginate_links()`, we should add these to bbPress' `paginate_links()` in search, replies and topics templates. See #WP24709/[wp27600]" netweb 3528 This blank arrow is of no use. This should be removed. Tools - Code Improvements normal normal Awaiting Review enhancement new 2023-02-08T13:47:27Z 2023-02-08T13:47:27Z "When we open [https://codex.bbpress.org/getting-started/before-installing/backing-up-your-database-and-files/] page, the blank arrow in the sidebar's last menu on the left side of this page is of no use. So we should remove this unnecessary arrow menu. Page Link => [https://codex.bbpress.org/getting-started/before-installing/backing-up-your-database-and-files/]" aezazshekh 3363 Use wp_die() instead of die() function Tools - Code Improvements trunk normal normal Under Consideration enhancement new reporter-feedback 2020-04-05T16:57:20Z 2020-04-06T16:38:44Z For plugin and coding standard need to use WordPress wp_die() instead of die(). immeet94 3520 The link in the title should be removed. Tools - Code Improvements normal normal Awaiting Review idea new close 2023-02-01T10:29:42Z 2023-02-02T00:58:46Z "The links given in the titles of [https://codex.bbpress.org/participate-and-contribute/codex-standards-guidelines/] page are of no use. The links should be removed from there. This is just a suggestion from my side. Page Link => [https://codex.bbpress.org/participate-and-contribute/codex-standards-guidelines/] Issues Video Link => [https://share.cleanshot.com/SMW5wCfDN39rkmXp5ZGy]" aezazshekh 2891 Add unit tests for RSS feeds Tools - Unit Tests normal normal Future Release defect (bug) new needs-unit-tests 2015-11-17T07:59:24Z 2015-11-17T08:04:08Z "bbPress has numerous RSS feeds * Topics and Replies from a single forum: * https://bbpress.org/forums/forum/troubleshooting/feed/ * Topics only from a single forum: * https://bbpress.org/forums/forum/troubleshooting/feed/?type=topic * Replies only from a single forum: * https://bbpress.org/forums/forum/troubleshooting/feed/?type=reply * Replies only from a single topic * All forum topics * All forum topics and replies * Topic tags See `bbp_request_feed_trap()` in `/includes/common/functions.php` Related: #2292 RSS feeds missing Some HTTP Headers" netweb 3479 BBPress password reset form doesn't display any error message when left blank Tools - Warnings/Notices 2.6.9 normal normal Awaiting Review defect (bug) new 2022-08-30T16:50:24Z 2022-08-30T16:50:24Z When submitting a blank BBPress password reset form, the same page is reloaded but no error/warning message is displayed. alejandroescobar89 3585 Function utf8_encode() is deprecated since PHP 8.2 Tools - Warnings/Notices 2.6.9 normal normal Awaiting Review defect (bug) new 2023-10-31T13:48:35Z 2024-02-12T18:48:38Z "PHPCS running on PHP v8.2 gives us the following warning: > Function utf8_encode() is deprecated since PHP 8.2; Use mb_convert_encoding(), UConverter::transcode() or iconv instead (PHPCompatibility.FunctionUse.RemovedFunctions.utf8_encodeDeprecated) It affects two places: * includes/replies/template.php:1103 * includes/topics/template.php:1336" philipjohn 2341 Show a notice if the topic or reply auto spammed Tools - Warnings/Notices 2.3.2 normal normal 2.8 enhancement new dev-feedback 2013-05-27T09:26:36Z 2014-09-09T19:27:35Z "Hi, This become a really trouble in our forums... bbPress and Akismet are doing a great job to detect the spam topics/replies. The problem is when a ""human"" post a reply/topic that marked automatically as a spam by Akismet, he think that something goes wrong and tried to post the topic/reply again and again ! Some users write the same topic/reply more than 10 times! and some users think that the key-master removes the topics/replies! So the admins always have to say that topic/reply was auto spammed. An idea I can think about, Is to show the spammed topics/replies for the author with a red background ( the colour not important ) and a notice that says something like ""This Topic/Reply is auto spammed by Akismet"" What's your opinion?" alex-ye 1883 Smarter template notices Tools - Warnings/Notices 2.0 normal normal 2.8 enhancement new 2012-07-03T19:23:52Z 2016-10-29T09:27:47Z "Currently, the themes include several hardcoded template notices at the top of various forms and pages. Ideally, these should fall under one dedicated action or template tag, with a loose convention on how to add/remove/modify notices. This has the positive side-effect of eliminating duplicate code, and strings in the template files themselves. For example, when searching for ""account has the ability to post unrestricted HTML"" - six results are displayed. This means changing it in 6 different places instead of only once in a function. " alexvorn2 3523 Table design is getting messed up on mobile screen. Component - Forums normal normal defect (bug) reopened has-patch 2023-02-03T13:04:01Z 2023-02-20T14:29:12Z "When we open [https://bbpress.org/forums/profile/robin-w/engagements/] page on a mobile device, the table's design is messed up. Because of this, the design of the page is broken. Page Link => [https://bbpress.org/forums/profile/robin-w/engagements/]" aezazshekh 3321 Coding Standard: Duplicate Array Keys Found - src/includes/forums/functions.php General 2.6.3 normal normal enhancement reopened has-patch 2020-01-13T09:37:16Z 2024-02-22T22:31:23Z Coding Standard: Duplicate Array Keys Found - src/includes/forums/functions.php ankitmaru 3477 In Responsive devices after generating Tickets Button overlaps General - UI/UX normal normal defect (bug) new has-patch 2022-08-10T10:49:03Z 2024-03-20T00:58:29Z "Hello Team, After generating the tickets, I found the alignment issue of Attachment button and Download zip text for mobile devices (below 370px). It is overlapping on each other. Please find Screenshot for the same. Thanks." varshil151189 2600 Include docs and example custom callbacks in example.php importer API - Importers 2.5 low minor Future Release defect (bug) new 2014-05-15T04:16:34Z 2023-11-17T20:14:10Z "Our `example.php` could do with some examples of the callbacks used throughout the other bbPress importers. " netweb 2461 bbPress1.php importing spam topics & replies netweb API - Importers 2.4.1 low normal 2.8 defect (bug) new 2013-11-04T07:11:10Z 2014-09-09T19:27:35Z "When importing with bbPress1.php (Either bbPress v1.2 or BuddyPress Group Forums) if a topic or reply is marked as spam then the importer will import all three as individual topics instead of one topic and two replies. As we use `'join_expression' => 'USING (topic_id) WHERE posts.post_position IN (0,1)',` as the main expression to distinguish between topics and replies this is not ideal. * A typical topic with two replies (you only need to take note of the last value for `post_position` on each line) {{{#!sql INSERT INTO `bb_posts` (`post_id`, `forum_id`, `topic_id`, `poster_id`, `post_text`, `post_time`, `poster_ip`, `post_status`, `post_position`) VALUES (2, 2, 2, 1, '

    Closed Topic Content\n

    \n', '2013-11-03 22:23:27', '10.1.1.8', 0, 1), (3, 2, 2, 1, '

    Closed Topic First Reply\n

    \n', '2013-11-03 22:23:39', '10.1.1.8', 0, 2), (4, 2, 2, 1, '

    Closed Topic Second Reply\n

    \n', '2013-11-03 22:23:48', '10.1.1.8', 0, 3), }}} * A topic with two replies all marked as spam, the `post_position` value is changed to `1` for both topic and both replies. {{{#!sql INSERT INTO `bb_posts` (`post_id`, `forum_id`, `topic_id`, `poster_id`, `post_text`, `post_time`, `poster_ip`, `post_status`, `post_position`) VALUES (11, 2, 5, 1, '

    Spam Topic Content\n

    \n', '2013-11-03 22:26:07', '10.1.1.8', 2, 1), (12, 2, 5, 1, '

    Spam Topic First Reply\n

    \n', '2013-11-03 22:26:16', '10.1.1.8', 2, 1), (13, 2, 5, 1, '

    Spam Topic Second Reply\n

    \n', '2013-11-03 22:26:24', '10.1.1.8', 2, 1), }}} * Workaround: After importing delete ALL your spam from WordPress" netweb 1774 Convert group forum slugs or tags to all contained posts API - Importers 2.0 low minor Future Release enhancement new 2012-03-05T22:39:43Z 2023-11-17T20:14:12Z "Our website uses groups as a replacement for boards. We would like to migrate our BuddyPress forum to bbPress 2.0. Now that tags are working we can cut down our board count from ~30 to 4, handling the remaining categorization with tags, such as ‘physics’, ‘android’, ‘networking’ and so forth. Here's what I want to achieve: All posts within http://example.org/groups/troubleshooting-physics Will be moved to http://example.org/forum/board/troubleshooting/ and have the tag ‘physics’ applied to it. All posts within http://example.org/groups/troubleshooting-effects Will be moved to http://example.org/forum/board/troubleshooting/ and have the tag ‘effects’ applied to it. I can think of 3 different ways to do this. ---- '''Option 1 - Step-by-step interface''' The importer could have an interface that let you go through each to-be-imported group step by step, choosing: * Tag(s) to be applied to every post within that group. * Which forum (or a new one) to move the group’s posts to. Considering some projects have hundreds of groups, it should be possible to skip this step-by-step process all together though. ---- '''Option 2 - Group slug to tag''' Enable by checkbox. Upon import, the slug of every group would be applied as a tag to all of its posts. So for example http://example.org/groups/troubleshooting-physics would apply the tag ""troubleshooting-physics"" to all of its posts. This gives us the option of either renaming groups before import, or renaming tags post import. ---- '''Option 3 - Make posts inherit group's tags''' Enable by checkbox. Seeing as BuddyPress enables tags for groups, you could make all posts within a group inherit their group’s tag(s) upon import. That way we could preemptively apply the tag “physics” to our “Troubleshooting – Physics” group and so forth before importing." Sadr 1773 Import only selected group forums to bbPress API - Importers 2.0 low trivial Future Release enhancement new 2012-03-05T22:18:31Z 2015-05-27T00:13:09Z "It would be great if I had the option to import only selected groups from BuddyPress. This would have two major advantages: * It would make it easier to also enable the user to import a selection of groups into a single common forum. * This might enable us to bypass memory issues, by converting one group at a time. Could help mitigate #1592" Sadr 2464 Rename vBulletin.php importer to vBulletin4.php API - Importers 2.4.1 low normal Future Release enhancement new has-patch 2013-11-07T12:17:56Z 2013-11-08T03:51:49Z "Proposed change to rename `vBulletin.php` importer to `vBulletin4.php` for better readability in the forum importer list as we will soon have vBulletin importers for vBulletin versions v3.x, v4.x & v5.x. Needs testing to confirm it does not break existing imports with 'on the fly' password conversion using `_bbp_class` = `vBulletin`" netweb 3247 Improvement of bbp-topic-index shortcode API - Shortcodes low normal 2.8 enhancement new dev-feedback 2019-01-30T07:48:30Z 2019-02-01T09:40:31Z "The `bbp-topic-index` shortcode just displays the list of the latest active topics. On many forum there is even the list of the last inserted topic (overall the whole forums) for who want to check new topics to reply to. The shortcode could accept the attribute `orderby` and the modify the query to order by `date` instead of order by the last activity meta key. Since the shortcode filters the query (`shortcodes.php:293` inside the function `display_topic_index`) it should be easy to add that option. PHP since version 5.3 should support this syntax: {{{ if (isset($attrs['orderby'])) { add_filter('bbp_before_has_topics_parse_args', function ($args) { $args['orderby'] = $attrs['orderby']; return $args; }); } }}} which simplifies a lot the filter coding. In the code above `$attrs` is the default attributes array the shortcode function receive from WP. Stefano. " satollo 2520 Switch topic reply notifications to enabled by default API - Subscriptions 2.5 low normal Future Release enhancement new 2014-01-19T22:05:57Z 2018-04-23T11:31:16Z "Change default topic notification subscriptions to be checked by default Going through a few of the plugins available for bbPress I came across quite a few offering this functionality: (Some of these also add other notification features) * [http://wordpress.org/plugins/orbisius-bbpress-enhancer/ orbisius-bbpress-enhancer] / [http://wordpress.org/plugins/orbisius-bbpress-notify-me-on-follow-up-replies/ orbisius-bbpress-notify-me-on-follow-up-replies] * [http://wordpress.org/plugins/bbpress-notify-nospam/ bbpress-notify-nospam] / [http://wordpress.org/plugins/bbpress-notify/ bbpress-notify] * [http://wordpress.org/plugins/bbpress-stay-checked/ bbpress-stay-checked] Kind of related notifications plugins: * http://wordpress.org/plugins/bbpress-new-topic-emailer/ * http://wordpress.org/plugins/bbpress-notifications/ * http://wordpress.org/plugins/bp-forum-notifier/ As we're going to have 'watch stars' here on Trac soon we can wait and see how many people 'star' this ticket and go from there." netweb 2707 subscription emails with unsubscribe link API - Subscriptions low minor 2.8 enhancement new 2014-10-16T13:07:37Z 2023-11-17T20:14:14Z "I've had a lot of issues with users not knowing how to unsubscribe from their subscription emails and have gotten quite worried about people marking them as spam (and eventually blacklisting my domain) instead of figuring out how to do it. Also, it's time consuming to explain how to do it, especially if they have forgotten their username and password. The only thing is that to have a unique one-click unsubscribe link that works the same way as other emails they might get, I have to have the emails sent individually (like in 2.5.3) and know this causes problems for some people. I'm using 2.5.3 because of this issue and just wrote something to manage it for myself. To work properly and not cause delays, it would need to queue the emails also -- I do understand the difficulty in doing that is why 2.5.4 moved to bcc, although bcc has its own problems. But I wanted to mention because I can't be the only person who has to deal with this and thought that as the bcc issue is still active, I'd see what people thought now." tharsheblows 2240 Add some classes ... Appearance - Theme Compatibility 2.1 low normal Future Release enhancement new 2013-03-06T00:02:42Z 2013-06-25T05:44:51Z "Forum has ""bbp-has-subforums"" class if it has any subforums. Why not to add more classes: for if: forum has topics - ""bbp-has-topics"" AND if: topic has replies - ""bbp-has-replies"" " alexvorn2 2328 Twenty Thirteen: Avatar icon bellow Appearance - Theme Compatibility 2.3.2 low minor Future Release enhancement new has-patch 2013-05-07T09:47:28Z 2015-07-03T04:34:25Z Please see attached screenshot. pavelevap 2244 In loop-single-reply.php to replace divs with ul and li Appearance - Theme Compatibility 2.2.3 low minor Future Release task (blessed) new 2013-03-06T21:24:33Z 2013-12-28T07:29:47Z "In the loop-single-reply.php file there are used div tags instead of ul and li tags. As bbPress use a table less design I think it would be more familiar to use '''everywhere''' is needed. " alexvorn2 2245 Hide subforums on paged Component - Forums 2.2.3 low normal Future Release enhancement new 2013-03-07T01:35:44Z 2013-07-28T19:03:38Z "If we have in a forum a lot of topics and subforums, to hide subforums list on '''forum/page/2''' page and next pages... " alexvorn2 3461 content cutting Off in small viewport size Component - Forums low normal Awaiting Review enhancement new 2022-05-10T10:56:13Z 2022-05-10T10:56:13Z "content cutting Off in small viewport size   URL: https://bbpress.org/forums/topic/bbpress-2-6-6/" umesh84 2564 Topic Tags beginning with % Component - Topic Tags 2.5 low minor Future Release defect (bug) new 2014-03-14T22:02:25Z 2014-05-17T22:51:25Z "If you try to assign a topic tag `%category%` the `%ca` will be stripped and the resulting topic tag will be `tegory%` * `%cat` results in `t` * `%cart% results in `rt%` * `%feed%` results in `ed%` * `%dead%` results in `ad%` Yet `%heart%` and `%qwerty%` work as expected Too early on Sat'day morning for me to think of a common denominator here " netweb 1937 Read/unread posts Component - Topics 2.1.2 low normal Future Release enhancement new 2012-08-14T21:06:34Z 2016-09-01T04:23:17Z "I'm essentially talking about mirroring the functionality of the [http://wordpress.org/extend/plugins/bp-unread-posts/ BP Unread Posts] plugin. There's plenty of additional features to consider for read/unread, for instance filters to show only unread posts, or only unread posts that you've posted in and so forth. But such extra features are for plugins or future releases imo." Sadr 2570 Default User Profile Fields Component - Users trunk low normal 2.8 enhancement new dev-feedback 2014-03-26T03:12:35Z 2014-09-09T19:27:35Z "I couldn't work out why a users profile URL wasn't being displayed on their profile and realized it is because we don't actually include it in `user-profile.php` I'm conflicted on if we should or shouldn't include this by default. If we do then should we also include user registration date? What about `user_contactmethods`? Should we create a new function `bbp_user_contact_methods` similar to `bbp_edit_user_contact_methods` and output each to the user profile? Related: #2055 Include member page" netweb 2582 Update user favorites and subscription profile templates with dashicons Component - Users 2.5 low minor Future Release enhancement new 2014-04-08T03:36:11Z 2023-11-17T20:13:02Z "In `loop-single-topic.php` and `loop-single-forum.php` * replace `+` with `dashicons-plus` or `content: ""\f132"";` * replace `×` with `dashicons-no` or `content: ""\f158"";` Some CSS tweaks will also be required in `bbpress.css`" netweb 2590 bbp_body_class filter incorrectly marking BuddyPress user account screens Extend - BuddyPress low normal 2.8 defect (bug) new 2014-05-01T12:21:42Z 2014-09-09T19:27:35Z "In the rendered wp body classes output we see the class .bbpress when we are looking at bp_is_user() screens ( buddypress user accounts) which causes issues if one is using that class for any layout management. In templates.php bp_body_class() L:905 the function ends on a generic class .bbpress if $bbp_classes[] is not empty so at a guess one of the previous checks under the 'User' section perhaps needs modifying? {{{#!php elseif ( bbp_is_single_user() && 'forums' == bp_current_component() ) { $bbp_classes[] = 'bbp-user-page'; }}} However not entirely sure the purpose of that 'User' section if I do above then I get the second block 'bbp_is_user_home()' push through 'bp-user-home' not previously visible. Although I suspect not, if this 'User' section in the class filter is in respect of BP user account screens only I think the logic in determining what classes are shown might be flawed or at least need the above mentioned component check to prevent the classes appearing on all bp_is_user() screens. " hnla 2287 private site: No activity recorded on new topics/replies Extend - BuddyPress trunk low minor Future Release defect (bug) reopened 2013-04-03T12:08:40Z 2023-11-17T20:13:04Z with r4831 there is no buddypress activity for new topics and new replies recorded anymore. wdfee 2365 BuddyPress does not show topics from network. Extend - BuddyPress 2.3.2 low minor Future Release idea new 2013-07-05T19:20:36Z 2015-02-02T19:00:04Z "This is on a WordPress Multisite When you go to a BuddyPress profile under forums, it does not show all the topics you have made on the sub sites of your WordPress network. Also, when you look at BuddyPress' activity page, it does not show any activity (Forum posts & Replies) on sub sites. In fact, I have noticed most features (Favorites, Subscriptions, Topics, Replies, Activity, etc) on sub sites with bbPress will not display any activity on the main site with BuddyPress." Zachary DuBois 3338 Wrong check for Buddypress notifications johnjamesjacoby Extend - BuddyPress 2.1 low minor Under Consideration idea assigned dev-feedback 2020-02-13T17:37:24Z 2020-03-16T14:45:01Z "Inside includes/extend/buddypress/activity.php In lines 418 and 552 There is a completely wrong check: {{{ if ( ! bbp_is_site_public() ) { return; } }}} This doesn't have to be checked. Because the site could perfectly be not indexable (what the coder considered ""private"" which private and non-indexable are not necessarily synonyms) and the site owner could be willing to have all the activity recording activated. I can't see a scenario where this is helpful at all. In fact, I was trying to make BuddyPress Notifications happen and I could not understand whats was going on with my site, until, after hours of reviewing the code, I found this. It's completely counterintuitive. As a regular user, I would have never discovered this relation by its nature. Essentially, 9 years ago, not sure why it made sense to create r3398 and **bbp_is_site_public** but I can't figure out any meaning on this code as I've explained (apart of spending a lot of hours to find what was going on between Buddypress and BBpress). I've seen a lot of threads in the support forums from Buddypress for issues with notifications and I'm sure, that this was the culprit in some scenarios (not always but a good portion of the times). Just a regression on r3398, so I think a patch is not needed. Meanwhile, I will be using the filter, but I think that an action shall be taken on this issue. " SirLouen 1473 Request to improve email subscription formatting johnjamesjacoby Front-end 1.1-alpha low minor Future Release (Legacy) enhancement new 2011-02-16T13:21:51Z 2023-11-17T20:13:06Z "Forum subscription emails don't seem to respect line breaks. For example, this: http://en.forums.wordpress.com/topic/authors-rss-feeds?replies=3#post-558826 Looks like this in the forums: {{{ Andrew, Thank you for pointing that out. }}} But the email shows: {{{ Andrew, Thank you for pointing that out. }}} Not a big deal with short responses like that but I can see longer replies getting ugly. The subject line of the email was “Authors' RSS Feeds” Any chance the HTML entity there could be output as a ‘ instead? Props andrewspittle for the suggestions." designsimply 1215 Post count bug General - Administration 1.1-alpha low minor Future Release (Legacy) defect (bug) new 2009-12-22T19:18:18Z 2011-09-20T22:47:08Z "I go to my bbPress dashboard and see posts count, thats say: 4024 posts. Statistics.php says 4024. Then i go to bb-admin/posts.php and i see 1 - 20 / 4,121. This mean i have 4121 posts on my forum. PhpMyAdmin 4121 --> post status 0. I try recounting without any help to this problem. There is many other with same problem here http://bbpress.org/forums/topic/bug-in-post-count?. I detect some problem on my friend forum (i am moderator in friends forum). I converted to bbPress 1.0.2 from 0.9.4. But my friends install first tima 1.0.2. " hpguru 2258 Custom (pretty) permalinks for bbPress General - Administration 2.2.3 low minor Future Release enhancement new 2013-03-14T01:47:21Z 2014-10-02T10:57:30Z "To add option to edit bbPress permalinks. (To make possible to have descriptive URLs). Add such structure variables as: %forumname%, %forumparentname%, %forumparentsnames%, %topicname%, %replyname% For topics: 1) pretty url: http://example.com/forum/subforum/custom_topic_title structure will be: [http://example.com/%forumparentsnames%/%topicname%] . 2) for http://example.com/forum1/custom_topic_title structure will be: [http://example.com/%forumparentname%/%topicname%] OR [example.com/%forumname%/%topicname%] . 3) http://example.com/custom_topic_title structure will be: [http://example.com/%topicname%] . 4) http://example.com/forum1/2013/custom_topic_title structure will be: [http://example.com/%forumname%/%year%/%topicname%] .. etc " alexvorn2 2311 Can't escape blockquotes with newline (enter) or backslash in rich text editor General - Content Creation trunk low minor Future Release defect (bug) new 2013-04-16T15:21:18Z 2023-11-17T20:13:10Z "Try the following in any thread on bbpress.org: * Paste or simply write a line of text in your editor box. * Click the ""Blockquote"" button to give it quotation styling. * Now if you want to continue writing ordinary, non-quoted text below that, you can't. Creating a new line will simply create a new line within the blockquotes area, instead of breaking out of it, into a new paragraph. I realize this is also how the WordPress edit works by default, but it's not a good user experience. You should never have to enter the text editor unless you're trying to do something out of the ordinary, i.e. advanced." Sadr 3171 Save draft topics & replies General - Content Creation low normal 2.9 feature request new dev-feedback 2017-10-14T06:06:28Z 2017-10-14T06:06:28Z "It'd be neat to automatically save partially filled in topic & reply forms for registered users. We could even save them on a per-forum, per-topic basis. I'm thinking we'd autofill the forms wherever possible." johnjamesjacoby 3584 In Responsive view, Content is going out of table(not proper layout) General - UI/UX low normal Awaiting Review defect (bug) new 2023-10-19T02:56:03Z 2023-10-19T02:56:03Z "URL:https://bbpress.trac.wordpress.org/wiki/TracTickets In the Responsive view, After screen-size 350px Content is out of the table layout." pranitdugad 3464 Design looks messy in responsive. Site - Codex low normal Awaiting Review defect (bug) new 2022-05-25T13:35:52Z 2024-03-17T13:09:57Z "Click on this url :- https://codex.bbpress.org/ Check in smaller screen (For mobile). It is looking messy few content is overlap on each other." nidhidhandhukiya 3460 comments code Cutting Off in small viewport size and Horizontal scroll bar is coming Site - Codex low normal Awaiting Review enhancement new reporter-feedback 2022-05-10T10:23:09Z 2024-03-16T11:34:58Z "comments code Cutting Off in small viewport size and Horizontal scroll bar is coming  URL: https://codex.bbpress.org/themes/theme-compatibility/getting-started-in-modifying-the-main-bbpress-template/" umesh84 3455 Burger menu Button design Break Site - bbPress.org low normal Awaiting Review defect (bug) new has-patch 2022-03-23T10:25:20Z 2022-03-23T10:31:15Z On the smaller devices, the Menu design break. I am attaching the screen short displaying the issue I am trying to show. himanshuc 3562 Content overlaps issue on mobile device Site - bbPress.org low normal Awaiting Review defect (bug) new 2023-05-24T13:02:40Z 2023-05-24T13:02:40Z "URL : https://codex.bbpress.org/ In Responsive the screen below 500px the content overlaps on each other " pitamdey 3563 The coloumn design is not proper Site - bbPress.org low normal Awaiting Review defect (bug) new dev-feedback 2023-06-02T09:28:11Z 2023-06-20T12:33:52Z "URL : https://bbpress.org/ The column design is not proper in responsive" pitamdey 2667 Grunt clean:dynamic task does not delete file/s from /build during grunt watch task Tools trunk low minor Future Release defect (bug) new 2014-07-30T04:12:15Z 2024-02-12T17:22:30Z "When running the Grunt task `grunt watch` a file that is modified and saved should be cleaned from the /build folder and the modified file copied from the /src folder to the /build folder as part of the `watch:all` task: {{{ tasks: [ 'clean:dynamic', 'copy:dynamic' ], }}} Currently the `clean:dynamic` task does not actually 'clean' (delete) the file from the /build folder, the `copy:dynamic` task overwrites the existing file. Workaround: Do nothing and continue to have the file overwritten without cleaning first. Options: 1. Fix the `clean:dynamic` task to actually 'clean' (delete) the file from /build 2. Remove the `clean:dynamic` task from the `clean` and `watch:all` tasks list To reproduce: * Temporarilly remove `copy:dynamic` from the `watch:all` task tasks list * Run `grunt watch` * Edit a file from /src and save Expected Results: * Edited file should be 'cleaned' (deleted) in /build folder Actual results: * File remains in /build folder See also replicated upstream ticket for WordPress Core: #WP29066" netweb 1705 Path disclosure if display_errors is on in production johnjamesjacoby Tools - Warnings/Notices 1.1-alpha low minor Future Release (Legacy) defect (bug) new has-patch 2011-12-29T18:09:37Z 2011-12-29T18:19:33Z "In bbPress 1.x, if display_errors is switched on, it's possible to hit a template file directly which will result in a full path disclosure when bbPress functions like bb_get_header() are not available. See [https://www.htbridge.ch/advisory/path_disclosure_in_bbpress.html this report] at htbridge for more info. Having display_errors switched on is not advisable for production sites. Until WordPress embraces display_errors work-arounds for this, I'm inclined to call this a non-issue. The fix for working around this is relatively invasive, and I'm attaching a patch. I added empty() checks to all exposed (global) variables in the templates and added checks for BB_PATH at the top to prevent direct access in the first place." johnjamesjacoby 2477 loop-single-reply.php calls bbp_reply_author_link() for topics, too johnjamesjacoby Appearance - Included Themes 2.4.1 lowest trivial 2.8 defect (bug) new dev-feedback 2013-11-23T11:14:25Z 2014-09-11T14:24:57Z "A topic detail page loops through each post with [http://bbpress.trac.wordpress.org/browser/tags/2.4.1/templates/default/bbpress/loop-single-reply.php loop-single-reply.php]. Without lead topics enabled, this template file is used for replies '''and topics'''. If you filter something like ''bbp_get_reply_author_display_name'' the following will return false within the filter: {{{ bbp_is_reply($reply_id) }}} for the first post in a topic (the topic itself). To be consistent, maybe the loop should distinguish between post type ""reply"" and post type ""topic"" to call the appropriate function. " wpdennis 3568 Hamburger Menu icon should be toggle in responsive Site - bbPress.org lowest normal Awaiting Review defect (bug) new 2023-06-11T13:18:51Z 2024-02-21T19:36:17Z "URL : https://meta.trac.wordpress.org/ticket/7049 The Hamburger Menu should be toggle like on one click it should open the menu and on one click it should close the menu " pitamdey 3572 Links Heading Design is not proper Site - bbPress.org lowest normal Awaiting Review defect (bug) new has-patch 2023-06-21T12:06:54Z 2023-08-17T20:24:30Z "Url : https://bbpress.org/about/ The sidebar heading which contain different links are not proper. It gets stick there should be some space" pitamdey 3476 Ui issue in responsive. Site - bbPress.org lowest minor Awaiting Review defect (bug) new 2022-07-26T13:51:22Z 2024-03-20T00:59:26Z "Click on the URL:- [https://bbpress.org/themes/#] check after 782 dimensions. after the user icon's first character is visible it does not look good. Either we need to show the full name or we need to hide that first character also." nidhidhandhukiya