Hi, I just made a forum using bbPress but there is no function on quoting certain post/comment.
Can someone guide me please how to quote a post or comment without using any plugin.
Thanks
QUOTING POST OR COMMENT
Published on October 30th, 2023 by gozazomoForum Index Page will not display
Published on October 29th, 2023 by dianaringer2018Hello,
I am trying to follow the step-by-step instructions, and I am still having trouble displaying the main forum page. I am trying to use method 1. I checked and verified the settings.
I added some test forums and topics, and I can see them in the backend.
Forum Root = Forums
Permalink structure is set to POSTNAME
Category | Tag base left blank (default)
I created a page called Forums and nothing displayed.
I tried adding the shortcode and still nothing appears.
I am referring to: https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/#3-%c2%a0creating-a-forum-page
Page Links: https://bkswathq.com/forums
Wordpress : 6.3.2
bbp Version 2.6.9
Thanks in advance.
Fills silly to be stuck so early on in the process.
Forum Page not showing
Published on October 29th, 2023 by tombaldacciHi All
After having published a new forum from bbpess dashboard, which has the following link: https://inflectionpoint.blog/forum/macro-101/, I have the page not found. However the general forum index page https://inflectionpoint.blog/forums/. The forum name is appearing, however when click on the forum name/link, it directs me to a non found page, any hint on what I may be doing wrong? Thanks
bbPress Critical Error Following Plugin Installation
Published on October 29th, 2023 by chrisej93Hi everyone, I’m hoping you can help me.
I am using WordPress version 6.3.2 and bbPress version 2.6.9. Earlier today, I installed a plugin called ‘BuddyPress Username Only’ which caused the whole of my site to have a critical error, so I went into recovery mode and deactivated and uninstalled the plugin. This fixed everything except my bbPress forum which still has a critical error as can be seen at https://railjunction.uk/forums/.
I deactivated and uninstalled bbPress then reinstalled it, but the error is still present.
Please can someone help me fix this? Thanks in advance. And yes, I have now learned my lesson about installing old plugins!
“I speak…” – language flags in user profile & private forum
Published on October 27th, 2023 by kpikusHello!
I have a question about some sort of add-ons to bbPress. Is there a possibility to add in user profile information about languages that user can speak in form of flags? Possibly in a way where user can add that information by himself. Or maybe should I use BuddyPress and some add-on to that plugin?
Second question is about forums available only for group of people verified by admin (I have online course and I want to restrict access to that forum for enrolled participants only). Is “Private groups” plugin the only solution or there are others?
Thank you in advance!
how to reorganize order
Published on October 26th, 2023 by adassetsHi. I’m new to this software; is there anyway to change the order of the topics to my liking? it looks like the order is set via the order the topic was created.
Thank you
bbPress Continued Development
Published on October 26th, 2023 by richard@geerservices.comHello all, I recently noticed that there has not been a significant update to the bbPress core for two years. Is the plugin still set to have further updates to keep up with PHP changes and WordPress?
Thank you,
Pas de menu
Published on October 26th, 2023 by alombredugrandarbreBonjour,
Je n’ai pas trouvé l’objet de mon problème sur le forum et j’espère ne pas faire de doubleblon. Dans le cas contraire, veuillez m’excuser.
Suite à la perte de notre forum lors de la mise à jour du php de notre blog wordpress, je cherche à réinstaller bbpress.
Il me semble avoir suivi la procédure : dans extensions > ajouter > bbpress > installer > activer.
D’après les tutos que j’ai trouvé, un menu “forum” devrait apparaître dans mon menu général à gauche, mais il n’y a aucun changement.
Pourriez-vous m’aider à résoudre ce problème s’il vous plait ?
Prevent participant from creating topic but allow replies
Published on October 24th, 2023 by norcom41In a bbPress forum I want to prevent participants from creating topics but allow replies. In searching the Internet I found code examples from which I selected some to build a plugin. I know a little PHP but WordPress is like a “black box.”
add_action(‘wp_loaded’,’modify_participant’);
function ‘modify_participant'()
{
add_filter(‘mod_participant’, ‘upd_participant’);
}
function upd_participant($role,$caps)
{
$role = bbp_get_participant_role();
$caps = modify_capabilities($role);
}
function modify_capabilities($role)
{
return array(
// Topic caps
‘publish_topics’ => false,
‘edit_topics’ => false,
‘edit_others_topics’ => false,
‘delete_topics’ => false,
‘delete_others_topics’ => false,
‘read_private_topics’ => false,
// Topic tag caps
‘manage_topic_tags’ => false,
‘edit_topic_tags’ => false,
‘delete_topic_tags’ => false,
‘assign_topic_tags’ => false
)
}
For instance the WP loaded hook causes it to run once at the start which should call those functions to initialize things. Is an add_filter also executed at that time to complete initialization? Then the black box proceeds with the bbp_get_parcipant_role routine so that the capabilities array elements can be updated. I read that WP filters always expect an object to be returned. It seems that these wouldn’t be permanent but just temporary in memory for executing that page. However my suspicion is that more coding would be necessary because that would be too much to depend on the black box for.
Ask about Bbprss plugin
Published on October 23rd, 2023 by fadillaHello everyone, I’m a beginner using the bbPress plugin in WordPress. I have some questions, and I hope I can get some help.
1. If I have 3 forums, Forum A, Forum B, and Forum C, and there’s User1 who wants to create a topic but doesn’t want to enter a specific forum first. They want to create a topic and then choose the forum. How can I create a form for this and add the option to select a forum when User1 wants to create a topic?
2. Can the admin set it as a default so that when User1 creates a topic and someone replies, it automatically goes to their email?
Thank you in advance.