Published on May 30th, 2024 by uksentinel
Just a short note to say I appreciate this release (Version 6.0.2)
The option ‘Column Display’ to select which columns for forum and topic indexes that you want to show and whether on all devices or just mobile is a great new tool/option for the BBP Style pack.
👍
Published on May 30th, 2024 by justinapella
Hello,
I’m missing the forums, topics and replies tab. I’m trying to delete posts.
View post on imgur.com
Published on May 30th, 2024 by justinapella
Hello,
Are you able to configure the forum posts to be able to post screenshots?
Published on May 28th, 2024 by ibnat
Hi all, interested to hear about how anyone deals with spam registrations.
So, I use the plugin reCaptcha by BestWebSoft which stops the bots.
But, how do you stop physical spam registration to your forum? I am getting around 20 a week now and they are by actual people with real email addresses. Around half of them get the confirmation email and then set their new password… Many then go silent but some make a post straight away to gambling, porn, the usual rubbish….
I have first posts flagged for approval so nothing ever gets posted but its a pain every week to manually remove these 10, 20, 30 new spam profiles.
be interested in any observations/other solutions.
Have a great day!
Published on May 26th, 2024 by tim4962
If asking for help, please include your WordPress version, bbPress version, and a link to your site.
1. WordPress 6.5.3
2. bbPress 2.6.9
3. Used plugin, “bbpress style Pack” for bbPress.
All About The Colors for the following text: Forum Topics Posts Last Post
My site: https://gtl.news/podcast/forum-index/ – The Text Is White, this is what I want.
Problem, I click on the active post topic and the text is Black on a blue banner at the top of page.
Forum Topics Posts Last Post Text is Black, I need white.
My site Problem: https://gtl.news/podcast/forums/forum/admin-messages-timothy-thompson/
How do I change it so the text is also white? I have FTP if I need to change the CSS, I just need to know what file and location.
I would be immensely thankful.
Thank You, Tim T
Published on May 24th, 2024 by devfind
When someone makes a reply or post a new topic, I would like to replace the generated content under bbp-author-avatar, see below:
<span class=”bbp-author-avatar”>
</span>
I have not found the proper filter for this.
I tried the following, but this gets called, every time a post is displayed:
add_filter( ‘bbp_get_reply_author_avatar’, ‘user_profile_link’ );
add_filter( ‘bbp_get_topic_author_avatar’, ‘user_profile_link’ );
Thanks!
Published on May 23rd, 2024 by devfind
Is there a document page that shows the list of actions and filters that can be implemented?
Seems like such documentation page should exists somewhere.
Published on May 23rd, 2024 by gdj13
Hey friends I am very much a noob when it comes to BBpress so apologies if this question has been asked before, I have searched the support forum and Googled a whole bunch but to no luck.
I am planning the development strategy for my client’s new website and they have requested a product review forum on the website so customers can review their products on the forum. So my question to you is, is there a way to add by default some review fields in the text editor of the Topic that the user has to complete to display at the top of the topic before posting it? There will be other Forums so it would only need to be on this particular Forum. So for example…
The forum is on say laptops they retail, so the review fields would be laid out similarly to below for example
Brand:
Spec:
RAM:
Graphics:
then below would be their description of the laptop.
WordPress version: 6.5.3
BBpress version: 2.6.9
No site as yet, it’s still in the planning stage but this is my site.
Published on May 22nd, 2024 by devfind
The signature of the user comes from an external system and is retrieved through an API.
I have the signature in the form in an hidden input before a new post or reply is created.
All I need is to use a hook to automatically include this with the content.
I am trying the following with no success.
I am new to bbPress programming and I am trying to piece up information found on different sites, so bare with me if part of what I wrote is incorrect
function add_signature_to_post($topic_id=0) {
$content = get_post_field( ‘post_content’, $topic_id );
$signature = “”;
if (isset($_POST) && $_POST[‘bbp_signature’]!=”)
$signature = $_POST[‘bbp_signature’];
echo ‘<script>’;
echo “console.log(‘Signature:”. $_POST[‘bbp_signature’] .”‘);”;
echo ‘</script>’;
return $content . $signature;
}
add_action(‘bbp_new_topic’, ‘add_signature_to_post’, 10, 0);
add_action(‘bbp_new_reply’, ‘add_signature_to_post’, 10, 0);
Thanks
Published on May 20th, 2024 by farooqayubi
I have created a custom plugin, to do customization in BBPRESS templates, & Paid Membership Pro.. Everything other customization is working fine, But the template i want to show instead of bbpress default loop-topics.php template is not showing it /wp-content/plugins/pharmacy-membership-forum/pharmacy-membership-forum.php – Mian Plugin File /wp-content/plugins/pharmacy-membership-forum/includes/templates.php – the file where we are connecting loop-topics.php /wp-content/plugins/pharmacy-membership-forum/templates/bbpress/loop-topics.php – new template for loop-topics.php templates.php Code it appears that bbPress is not prioritizing your custom templates, or something else might be going wrong during the template loading process.
<?php
// Prevent direct access
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Hook into plugins_loaded to ensure bbPress is loaded
add_action('plugins_loaded', 'cmp_override_bbpress_templates');
/**
* Function to override bbPress templates.
*/
function cmp_override_bbpress_templates() {
// Add filter to override bbPress template parts
add_filter('bbp_get_template_part', 'cmp_custom_template_parts', 10, 3);
}
/**
* Filter to override bbPress templates.
*
* @param array $templates Array of template paths.
* @param string $slug Template slug.
* @param string $name Template name.
* @return array Modified array of template paths.
*/
function cmp_custom_template_parts($templates, $slug, $name) {
$plugin_template_path = plugin_dir_path(dirname(__FILE__)) . 'templates/bbpress/';
// Check for various templates and override them
if ($slug === 'loop' && $name === 'topics') {
$custom_template_path = $plugin_template_path . 'loop-topics.php';
array_unshift($templates, $custom_template_path);
}
if ($slug === 'content' && $name === 'single-forum') {
$custom_template_path = $plugin_template_path . 'content-single-forum.php';
array_unshift($templates, $custom_template_path);
}
if ($slug === 'loop' && $name === 'single-topic') {
$custom_template_path = $plugin_template_path . 'loop-single-topic.php';
array_unshift($templates, $custom_template_path);
}
return $templates;
}