Topic reply page does not open.
I disabled the plugins and the incompatibility is with the loco translate plugin, is there any way to solve this problem?
When deactivating the loco translate plugin, the topic answer page opens normally.
Topic reply page does not open
Published on May 21st, 2023 by elielwanderleyBlank threads and forum gone all weird
Published on May 21st, 2023 by becbaconI’m new to wordpress and I installed the BBPress forums and they were fine and hen changed to looking all weird and ‘typewriter’ font and when I click on a thread it jus goes to a blank page and there is no way for anyone o actually post responses.
What has happened?
Please can someone help (in simple English, I am such a newbie at this and really have no clue.)
Moderation BUG Found
Published on May 21st, 2023 by zoddshop63I found a bug that needs to be addressed. I have turned off moderation completely so all posts should go live immediately.
However if you click the hyperlink button and enter in a URL in the visual editor, the post will always go to moderation.
(If you post the URL in the visual editor without clicking the hyperlink button, it will not go to moderation and the link will show as a clickable preview.)
About bbpress email notifications
Published on May 20th, 2023 by momotarouHello
I am new to BBpress.
Is the following content possible with BBpress?
1) Group the forums and have each membership level in the group.
2) Only registered members in each forum can send email notifications (new topics, replies) to the grouped forums.
I look forward to your advice.
thank you.
How to add search bar?
Published on May 20th, 2023 by zoddshop63How to add search bar on top of page for forums and topics? It only shows up on the index. There was a plugin called bbptools that did it, but it was outdated and caused critical errors so i had to delete it.
bbpress not responsive on mobile browsers
Published on May 19th, 2023 by zoddshop63Text gets cut off in the mobile browser and goes into different columns. For example a topic page, the last column is last post with the time and author name. The author name is cut off.
Pagination not showing correctly
Published on May 19th, 2023 by enkoesHi,
It seems that I have problem with pagination display.
I use shortcode [bsp-display-topic-index show=‘30’] to display the topic list. I have currently 15 topics so far, and display looks fine:
Viewing 15 topics - 1 through 15 (of 15 total)
But when I change the shortcode to [bsp-display-topic-index show=‘10’], my total number of topics also being reduced:
Viewing 10 topics - 1 through 10 (of 10 total)
And I don’t see any pages number 1,2
Somewhere gone wrong?
Regards.
Closed Topic
Published on May 18th, 2023 by Devcr3I wrote this code to close the topics (specific forum) after 24h. It’s right?
// Funzione per chiudere automaticamente i topic dopo 24 ore
function chiudi_topic_dopo_24_ore($topic_id) {
// Ottenere la data di creazione del topic
$topic_date = get_post_field(‘post_date’, $topic_id);
// Calcolare la data e l’ora attuali
$current_date = current_time(‘mysql’);
// Calcolare la differenza in ore tra la data di creazione del topic e l’ora attuale
$hours_diff = round((strtotime($current_date) – strtotime($topic_date)) / (60 * 60));
// Se sono passate 24 ore, chiudere il topic
if ($hours_diff >= 24) {
bbp_close_topic($topic_id);
}
}
add_action(‘bbp_new_topic’, ‘chiudi_topic_dopo_24_ore’);
// Funzione per chiudere automaticamente i topic esistenti dopo 24 ore
function chiudi_topic_esistenti_dopo_24_ore() {
// Ottenere tutti i topic del forum specifico
$args = array(
‘post_type’ => bbp_get_topic_post_type(),
‘post_parent’ => ‘YOUR_FORUM_ID’, // l’ID del forum
‘posts_per_page’ => -1,
);
$topics = get_posts($args);
// Chiudere i topic che hanno superato le 24 ore
foreach ($topics as $topic) {
$topic_id = $topic->ID;
chiudi_topic_dopo_24_ore($topic_id);
}
}
add_action(‘init’, ‘chiudi_topic_esistenti_dopo_24_ore’);
bbpress toolkit error
Published on May 17th, 2023 by zoddshop63Is there any replacement for bbpress toolkit. I constantly get spammed with this email.
An error of type E_ERROR was caused in line 702 of the file /usr/local/lsws/Example/html/wordpress/wp-content/plugins/bbp-toolkit/includes/main_page.php. Error message: Uncaught Error: Call to undefined function create_function() in /usr/local/lsws/Example/html/wordpress/wp-content/plugins/bbp-toolkit/includes/main_page.php:702
Stack trace:
#0 /usr/local/lsws/Example/html/wordpress/wp-includes/class-wp-hook.php(308): forums_toolkit_page()
#1 /usr/local/lsws/Example/html/wordpress/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters()
#2 /usr/local/lsws/Example/html/wordpress/wp-includes/plugin.php(517): WP_Hook->do_action()
#3 /usr/local/lsws/Example/html/wordpress/wp-admin/admin.php(259): do_action()
#4 /usr/local/lsws/Example/html/wordpress/wp-admin/tools.php(40): require_once(‘…’)
#5 {main}
thrown
BB Press is Running very slow
Published on May 16th, 2023 by kemmiegI’ve seen a few posts regarding speed issues. I have not seen anything recent for a resolution, everything I’ve seen is from more than 5 years ago except for one (I did post that I could use some help) but there was no resolution.
It’s taking 9 seconds just to post in the forum. Users are clicking the submit button multiple times because it’s not posting right away.
What can I do to get things speeded up. I’ve tried deactivating plugins but it’s still slow.
Thank you