Search Results for 'bbpress'
-
Search Results
-
We had a PHPBB many years ago, which we migrated to bbPress around four years ago, but it seems some flags remained in the database for the whole time, flags like (_bbp_class, _bbp_old_user_id, _bbp_password, _bbp_phpbb_user_avatar, _bbp_phpbb_user_sig). They might be needed; I have no idea.
But after the last update of WP and all the plugins, all the migrated users started to get an error message instead of being able to log in:
`
{“success”:false,”data”:[{“code”:”bbp_converter_db_connection_failed”,”message”:”Database connection failed”}]}
`
After some debugging and searching, I found https://bbpress.trac.wordpress.org/ticket/3419#no0 and tried to remove _bbp_class, which helped 🙂I just needed to wipe the
SQLite Object Cache
because it kept the old data. It might happen to someone else in the future, I don’t know. I don’t know if you can somehow influence that this metadata is not stored there or something else. But at least you have the information that it might happen.Hello, I have a taxonomy forums that is is linked to the user, how can I do to create a forum on bbpress and when it’s done it also create a forum on my taxonomy
my code is :
function create_forum_taxonomy_entry($forum_id, $forum_args) {
$forum_title = get_the_title($forum_id);
$forum_slug = sanitize_title($forum_title);error_log(“Création du forum : ” . $forum_title);
error_log(“Slug du forum : ” . $forum_slug);// Insertion du forum dans la taxonomie forum
if (!term_exists($forum_title, ‘forums’)) {
$result = wp_insert_term($forum_title, ‘forums’, array(
‘slug’ => $forum_slug
));if (is_wp_error($result)) {
error_log(“Erreur lors de l’insertion du terme : ” . $result->get_error_message());
} else {
error_log(“Term créé avec succès : ” . print_r($result, true));
}
} else {
error_log(“Le terme existe déjà : ” . $forum_title);
}
}
add_action(‘bbp_insert_forum’, ‘create_forum_taxonomy_entry’, 10, 2); but this function isn’t calledthe file has another function below and it works so it’s not the calling of the file
Topic: PHP Deprecated
When I used your pluggin, there is this message :
Deprecated
: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in
/home/aaa/nameofyoursite/wp-content/themes/Avada/includes/class-avada-layout-bbpress.php
on line
219Hi there, here is my site: https://www.masters-of-photography.com/forums/
Note that the individual forum link goes to a blank page: https://www.masters-of-photography.com/forums/photography/
And the individual topics links also go to a blank page: https://www.masters-of-photography.com/forums/topic/what-types-of-cameras-do-youtubers-use/
BBPress Version 2.6.11
WordPress 6.6.2
Running a custom child theme of Astra.bbPress has been translated into many languages. See https://translate.wordpress.org/projects/wp-plugins/bbpress/
Is there a cookie I can set to make bbPress dynamically switch from say the English language to the French language?
I have a website in several different languages.
Hi, I am using the bbPress integration with BuddyPress, so that when new BuddyPress groups are created, their respective associated forum is also created. I would like these forums to already have some topics created by default (such as rules, general chat, …), so that the user does not have to create them manually. Although the user can create more topics later, but I would like the forum to already include some topics by default when the group is created. Is it possible to achieve this? Thanks.
Topic: oEmbed Won’t Work
A forum user notified me that he cannot post a new topic. He writes the the title, the post body, the tags, and then on clicking on ‘send’ the page gets refreshed on the topics list view, and at the bottom he can still view the post contents still in the form, with the form prefilled with the data already entered.
His role is participant, and for the sake of testing I faked a participant role to check if the role was blocked. It is not. I managed to post a new toping without hassle.
The Forum is open.Where or how can I get more details about the process? What’s blocking, or what errors are returned, maybe they are hidden. Any suggestion?
v2.6.11 and wp6.6.2 with following plugins installed
Plugins:
bbp style pack
bbp user ranking
bbppress notify (no-spam)
GD bbPress Toolbox ProThank you very much
Hi there we are trying to make BBPress work on our site, http://www.adventurecountrytracks.com we use Memberpress and Elemntor, unfortunately, we cannot finish the design work, even though we have used some of the hints we could find online.
we use current versions all updated.
even if we can make the front forum page to work, the topics and all sites below arnt adjusted.
it would be great if we can get help…thanks and cheers.