Hello. I have successfully edited all breadcrumbs on the Forums and Topics pages, but have been unable to edit the breadcrumbs on the bbPress generated user profile page. Currently, the page title reads “Edit profile for User: testname” and the breadcrumb reads “You are here: Home”
I want to edit that breadcrumb to read “You are here: Home > Forums > Profile”
Any insights? Thanks!
I meant test with just bbpress, so eliminating toolkit, which you have done.
If it was working, and now is not, then something has changed with that account.
So first, I suggest you go though the settings for the working and not working user and check any differences
Hi Robin,
Thanks for the quick answer, but I don’t understand it. What do you mean ?
Disabling bbp toolkit doesn’t solve the issue. (I need to have the Tiny MCE editor you see on picture WORKING because my users need to upload images). And btw, it was working correctly a few days ago, so disabling it is not the solution for me.
I made some other test and it appears that if I use other admin account, the editor displays correctly. So it’s only with ONE admin account (the one I do everything on my forum) that the issue is present.
Any other idea ?
Hello,
It was recently brought to my attention that registrations were not being sent. I asked the users to try the “forgot password” link and this does not work either. I set up the plugin “Easy WP SMTP” and tested it and it works… but now I have 332 users registered and they cannot login. What do I do?
not that I know – I cab only suggest as a test you remove your string modifier and see if that fixes.
what is confusing me is that in
dashboard>settings>forums>single forum slug you have
discussion where I have forum, and it is this slug that is the extra one showing in the url.
Why you have discussion, I have no idea, I have not seen this before
all I can suggest is that it could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
and see what is setting this to discussion
Then come back
also, i’m using what i believe is the latest version of buddypress (version 3.2.0)
@robin-w i’m using version 2.5.14 — that’s the latest version, right?
untested, but this should do it
add_filter ('bbp_after_has_search_results_parse_args', 'my_function')
my_function ($args) {
// bbp_get_closed_status_id() REMOVED,
$post_statuses = array(
bbp_get_public_status_id(),
bbp_get_spam_status_id(),
bbp_get_trash_status_id()
);
// Add support for private status
if ( current_user_can( 'read_private_topics' ) ) {
$post_statuses[] = bbp_get_private_status_id();
}
// Join post statuses together
$args['post_status'] = implode( ',', $post_statuses );
return $args ;
}
sorry, untested and taken from my files – try
function rew_no_reply_per_forum ($reply_address) {
$forum_id = bbp_get_forum_id() ;
if ($forum_id == 6 ) $reply_address = 'xxx@yyy.com' ;
if ($forum_id == 7) $reply_address = 'abd@hdhd.com' ;
return $reply_address ;
}
add_filter ('bbp_get_do_not_reply_address', 'rew_no_reply_per_forum') ;
Hello,
I’m working with a 3.1v of phpBB. I’ve worked my way through a few hurdles but I’m stuck on the current one. The latest error I’m getting is [Unknown column ‘forums.forum_topics’ in ‘field list’]. For the life of me, I have no idea where this is coming from. The error info
SELECT convert(forums.forum_id USING “utf8mb4”) AS forum_id,convert(forums.parent_id USING “utf8mb4”) AS parent_id,convert(forums.forum_topics USING “utf8mb4”) AS forum_topics,convert(forums.forum_posts USING “utf8mb4”) AS forum_posts,convert(forums.forum_topics_real USING “utf8mb4”) AS forum_topics_real,convert(forums.forum_name USING “utf8mb4”) AS forum_name,convert(forums.forum_desc USING “utf8mb4”) AS forum_desc,convert(forums.left_id USING “utf8mb4”) AS left_id,convert(forums.forum_type USING “utf8mb4”) AS forum_type,convert(forums.forum_status USING “utf8mb4”) AS forum_status FROM phpbb_forums AS forums LIMIT 0, 100 /* From…
The very first error I had to overcome was the utf8mb4 issue. I backed up the database and then restored it in a new database. Judging by what I’m seeing it looks like I wasn’t successful?
How would I make bbPress functions available for a WordPress template file?
Specifically, I’m building some custom RSS feeds, one of which lists the latest topics posted on the website, but with some modifications. While I can pull the latest topics with a query_posts() call using (‘post_type’ => ‘topic’) and parse them with a standard post loop, I can’t figure out how to access tags related to each topic. I assume that bb_get_topic_tags() should get me the tags but the function is not available for the RSS file template which is in my WordPress template directory. I have basically been using this method for custom RSS feeds.
Since a function_exists() call for bb_get_topic_tags() returns false, I assume that I should first prime or load the bbPress plugin somehow. But how? Or am I approaching this completely wrong? I suppose I could always do a direct SQL query but I would like to avoid that if possible.
I have tried searching here and elsewhere but keep drawing blanks. The closest I could get to is this topic but it doesn’t really give an answer, or at least not one that I can understand.
I’m running the latest public bbPress and WordPress versions.
bbPress 2.5.14:
FILE: /var/www/test.site/wp-content/plugins/bbpress/includes/admin/converter.php
-------------------------------------------------------------------------------------------------
FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
-------------------------------------------------------------------------------------------------
310 | WARNING | INI directive 'safe_mode' is deprecated since PHP 5.3 and removed since PHP 5.4
-------------------------------------------------------------------------------------------------
FILE: /var/www/test.site/wp-content/plugins/bbpress/includes/admin/tools.php
-----------------------------------------------------------------------------------------------------------
FOUND 0 ERRORS AND 1 WARNING AFFECTING 1 LINE
-----------------------------------------------------------------------------------------------------------
144 | WARNING | Function create_function() is deprecated since PHP 7.2; Use an anonymous function instead
-----------------------------------------------------------------------------------------------------------
In bbPress 2.6-RC6 everything is good.
bbPress 2.5.14
PHP Compatibility Checker 1.4.6
Hello,
I have been trying to test my forums and sometimes I get an error message that says “ERROR: Your reply cannot be created at this time.” I have checked my settings and I cannot figure out why this error message is coming up. A few people who have tried to post have told me that they received this message as well. It does not happen to every forum or every topic, only some of them. Does anyone know how I can fix this? I am using the BB Press plugin. Thank you.
Kristin
@illuminstr
If you do not have caching software that might be not accepting the change to the settings, then
It could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
I tried testing the twentyfifteen and the other twenty-themes, did not work. Also deactivated the plugins, did not work. I think the hosting is using mysql for it servers.
you’ll need to do some fault finding
It could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
Hi robin, thx for the reply.
Unfortunately, that “previous versions” is the same as the trac, which doesn’t have the ‘tests’ folder that contains all the unit testing.
I just ran into this issue, it turns out one of words in our moderation list was “ass”. This was causes any topics with words like class, associate, assembly, password etc to be held for moderation (pending status). After a bunch of testing the only solution was to remove “ass” from the moderation list.
Can anyone point me the place where i can find the unit test for specific bbpress version?
In the trac repo, only the trunk/beta/rc have the unit test folder. But on the standard release, it’s just the production version.
Maybe there’s already a way to do it in trac’s interface but I couldn’t figure out.
For example, I want to get the unit test for version 2.5.12 to run some compatibility test on my plugin. How can I get that?
https://bbpress.trac.wordpress.org/browser/tags
Thanks much 🙂
Bumping this as the sentiment in the original post about the lack of progress with maintaining bbbpress as an active project seems to be even more relevant now than when this topic was made.
While somehow wordpress.org indicates the bbpress plugin was last updated a week ago, the current version 2.5.14 was released in September 2017.
The next release as far as I can tell is 2.60, for which the latest development version, rc5, was first put out for feedback 13 months ago.
it is not reasonable to call this project under active development.
if you actually posted ‘After clicking on register button wp shows wp-login.php page but without login form. Only -1 in upper left corner.’ on a wordpress forum, why would they even mention bbpress? Youy must have asked a question mentioning bbpress.
I have looked at the issue and it is a wordpress issue, but general advice
It could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
I populated config.php with the data and it WORKS! (looks good by the way!!).
The only thing is that my forum is at
test.domain.com/forum/
I cannot get it to the root at
test.domain.com
I have the latest RC of bbpress, trying to import from a phpbb 3.2.0 install. I have reset it and started it and reset it and started it and no matter what I do, it starts with “no users to import” and then it imports thousands of forums/topics all assigned to anonymous.
Is there a way to only import users at first and once it successfully does it, then do the normal import of the forums/topics and so forth?
Or is there a common issue that has been found with importing users that can be fixed by adjusting something in the source database (or…something)?
It could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back