Forum Replies Created
-
So close… Indeed you use bbp_has_replies to reverse order the replies
function custom_bbp_has_replies() { $args['order'] = 'DESC'; // 'ASC' (Ascending, Default), 'DESC' (Descending) return $args; } add_filter('bbp_before_has_replies_parse_args', 'custom_bbp_has_replies' );
And use bbp_show_lead_topic to always show the ‘lead topic’ (More details here.
function custom_bbp_show_lead_topic( $show_lead ) { $show_lead[] = 'true'; return $show_lead; } add_filter('bbp_show_lead_topic', 'custom_bbp_show_lead_topic' );
In reply to: bbPress SimplePress 5 ImporterThanks for the feedback, glad it worked for you.
What custom rewrite rules did you use in .htaccess for redirects, care to share these for other users migrating from SimplePress?
Cheers,
Stephen
Thanks for this, it would be great if these could be added here:
https://translate.wordpress.org/projects/bbpressIf you are interested in doing this post a message on the Polyglots blog here:
https://make.wordpress.org/polyglots/Each user can manage their own email subscriptions to topics via their user profile eg.
https://bbpress.org/forums/profile/sixf00t4/subscriptions/If a user wants to subscribe to an RSS feed simply add /feed/ to the end of any URL.
In reply to: How to automatically recount Post countI think having a look at the following trac ticket that has some changes in the upcoming bbPress 2.3 might give you some pointers or it might be enough for you to just use as is when 2.3 is released.
In reply to: Import from 1.1 to 2 – hangsThere is this comment via @JJJ
Try bumping the converter start (_bbp_converter_start) up 1 or 2, and see if it continues on.
I am trying to wrap my head around this and this may or may not help 😉
Once the import stops at that magic ~31000 number open up your WordPress `wp_options` table in phpMyAdmin and find the following three entries (or values similar):
- `_bbp_converter_step | 6`
- `_bbp_converter_start | 31100`
- `_bbp_converter_query | SELECT convert(topics.topic_id USING “utf8…`
These translate to ‘step’ is the step the conversion was up to (Importing forums, forum hierarchy, topics etc), ‘start’ is the last set of rows the converter was importing when it stopped from the current ‘step’ and ‘query’ was the last SQL query executed.
I think from some calculated guesswork yours will be around step=6 & start=31000
What you can now try is to change this ‘start’ value directly in the `wp_options` table and increase the value to hopefully allow the importer to skip the problem and finish importing the remaining topics and onto importing the replies.
The default setting for the importer is to import 100 rows at a time as defined by ‘Rows Limit’ on the import options main import tool. Thus the importer could be failing on any of those 100 rows so if it was row 31000 that it stops on changing this to 31001 would continue on and finish the import. The reality is though that it could be any number from 31000 to 31099.
I would suggest on the forum import settings change ‘Rows Limit’ to ‘1’ and in `wp_options` change `_bbp_converter_start` to 31001 and click start. This will resume the last import starting at the same ‘step’ it left off with and starting at row 31001 and then proceed 1 row at a time.
If the import stops again you can look up the values in `wp_options` and increase by 1 again and resume the import again.
Now with that said the import will continue to only import 1 row at a time for the remainder of the import process which with 30,000+ topics I expect you will have quite a few tens or hundreds of thousands of replies to also import and this will be much slower than importing 100 rows at a time.
In reply to: Mingle conflict, err#404You didn’t state the full plugin name 😉
bbPress tries to be as compatible as it can with as many WordPress plugins as possible and I suggest you post in the Mingle Support Forum to see if any others have had the same issue and/or know of a work around. https://wordpress.org/support/plugin/mingle
In reply to: Topic author names prefixed with "imported_"You just need to run the Repair Tools for ‘Count topics for each user’ and ‘Count replies for each user’.
In reply to: Mingle conflict, err#404Are you referring to Mingle Forums?
If so I could not repro this with bbPress 2.2.3 and Mingle Forums 1.0.33.3
- WordPress Role = Administrator | bbPress Role = Keymaster
- WordPress Role = Subscriber | bbPress Role = Moderator
- WordPress Role = Subscriber | bbPress Role = Participant
- WordPress Role = Subscriber | bbPress Role = Spectator
The above was all I tested but each works as expected:
https://codex.bbpress.org/bbpress-user-roles-and-capabilities/In reply to: phpBB 3 to bbPress import – duplicate usersHere is the answer you are looking for https://bbpress.org/forums/topic/assign-topics-to-another-user/#post-118793
In reply to: bbConverter errorbbPress 2.x includes its own phpBB converter (It was based on bbConverter)
https://codex.bbpress.org/import-forums/
The next release of bbPress will also include further improvements of the phpBB importer (I am working on these right now)
In reply to: Translating bbpress plugin not workingIt appears that bbPress Sweedish translations are a bit all over the place:
bbPress Dev – 87% Complete https://translate.wordpress.org/projects/bbpress/dev/sv/default
bbPress 2.2x – 0% Complete https://translate.wordpress.org/projects/bbpress/2.2.x/sv/defaultAlso WP Sweeden had previously operated there own translations here
bbPress 2.1 http://wpsv.se/oversattning/projects/bbpress/21
bbPress 2.0 http://wpsv.se/oversattning/projects/bbpress/20I think the best idea would be to contact WP Sweeden and ask about bbPress translations
In reply to: Import from 1.1 to 2 – hangsDid you run the bbPress 1.1 admin recount tools /bb-admin/tools-recount.php before importing?
You can try importing again now and if that fixed it, good, if not onto phpMyAdmin:
To check the integrity of the bbPress 1.1 database and repair/optimize any tables if needed. The instructions in following are written for WordPress but are the same for any database so follow the two steps ‘Optimization using phpMyAdmin’ and ‘How to Repair WordPress Tables’ here:
http://wpmu.org/wordpress-maintenance-101-how-to-optimize-and-repair-database-tables/
In reply to: Topic, page and reply link issueDuplicate, closing see https://bbpress.org/forums/topic/topic-page-and-reply-link-issue-2/
In reply to: Simple classifieds forumThis might help also https://codex.bbpress.org/getting-started-with-bbpress/
In reply to: No "bbPress – User Register" in template?!No, it should just work.
If you have links to your site this really helps us to see exactly what your issue might be.
In reply to: Language file isn't workingIn reply to: Image vanished after 3.5 updateIt looks like you have fixed this and it is a WordPress issue and not a bbPress issue.
In reply to: Language file isn't workingOk… Maybe define en-US in wp-config.php `define (‘WPLANG’, ‘en-US’);`
That might lead to other issues with the rest of your site though not having en-US for WordPress
Another option, although I don’t think this will works anymore is to upload them to /wp-content/plugins/bbpress/languages/
In reply to: Remove 'Sticky Topic' capability from ModeratorThere isn’t currently a way to do what you are asking, there probably is a way to disable stickies site wide for everyone (including admin/keymaster) but that is not what you are looking for.
With the default permissions a moderator has I think there are far more dangerous options available to them such as deleting other users topics and replies.
In this regard you are offering any moderators of your forum a certain degree of trust. I would suggest you extend this trust to your moderators in regards to stickies. You can make this part of your ‘moderator’ rules/policy and ask all your moderators abide by this policy.
In reply to: Language file isn't workingWhat happens if you name them bbpress-en-US.po & bbpress-en-US.mo
In reply to: Roles and Capabilities in bbPress 2.2I have updated the codex docs for bbPress User Roles and Capabilities introduced with 2.2.
@MarjoriesDaughter I would suggest you update bbPress to the latest 2.2.3 version rather than use an old version, with that then both your conditions above will be met.In reply to: Forum menu items not showing after installationContact the author/support site of the plugin causing the conflict and see if they can work towards making their plugin compatible with bbPress.
Tapatalk bbPress 2 plugin series 1.1.0 released
Update note: 25 Dec 2012
1. add GD bbPress Attachments support
2. fix invalid forum list request for category forum
3. fix topic notification status change when reply a topic
4. fix incorrect url issue in notification email
5. fix time missing issue in latest view
6. fix timezone issue
7. fix incorrect user post count issue
8. fix user reply post list view avatar display issue
9. fix topic subscription issueTapatalk for bbPress Plugin – Release Announcement and Changelog
They have a dedicated bbPress Forum here
In reply to: Shorten posts with "read more" optionTake a look at this topics on topic/reply excepts: