Skip to:
Content
Pages
Categories
Search
Top
Bottom

support ticketing system

Published on July 18th, 2022 by s

Hi,
Is it possible to use bbpress as a support ticketing system something similar to known plugin in the area like SupportCandy, Awesome support etc.
Thanks

Can users choose if posts are public or private?

Published on July 18th, 2022 by LMEO

I’m working on a forum which may contain some sensitive information, so it would be ideal if users can select whether their posts are visible to everyone, or only to other logged in users. Is there a plugin that accomplishes this? I can’t quite find what I’m looking for.

To clarify: I’m not looking to make entire forums private, but to give users the option of making a new topic private.

Any help in pointing me in the right direction is much appreciated.

Editor autoresize

Published on July 17th, 2022 by rinh

Hi
First, thanks for all the help so far with functions and filters! The forum is done, but there is one feature I missed from the old forum and that’s having the editor autoresize with the content. I think this may be out of scope for this plugin, but perhaps someone knows something.

I looked around and it seems WordPress TinyMCE have this feature, but it’s not enabled. I did some terrible attempt (you’re allowed to laugh) to add it. Not only did it break my toolbar 1, but it didn’t work either

function bbp_enable_visual_editor( $args = array() ) {
	
    $args['quicktags'] = false;
    $args['teeny'] = false;
    $args['tinymce'] = array( 
    'tinymce' => array(
            'toolbar1' => 'formatselect, bold, italic, underline, strikethrough, blockquote, link, forecolor, bullist, numlist, alignleft, aligncenter, alignright, outdent, indent, undo, redo',
	    'autoresize_min_height' => 100,
            'wp_autoresize_on'      => true,
            'plugins'               => 'wpautoresize',
        ), 
    );
	
    return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );

Fatal error PhP snippet from Layout and functionality page

Published on July 15th, 2022 by rinh

Hi!
I tried a snippet from this page: https://codex.bbpress.org/layout-and-functionality-examples-you-can-use/#24-show-status-labels-for-bbpress-topics
to get a label or icon for sticky topics.

function rk_sticky_topics() {
 
   if ( bbp_is_topic_sticky() && !bbp_is_topic_closed() )
      echo '<span class="sticky">[Sticky]</span>';
}
 
add_action( 'bbp_theme_before_topic_title', 'rk_sticky_topics' );

I get a fatal error with syntax error unexpected ‘;’ on the line starting with if.

Thank you in advance

Template in Block Themes?

Published on July 14th, 2022 by chenryahts

BBpress keeps loading the empty index.php in the TwentyTwentyTwo Child theme I’m working on, which loads a WSOD.

I can’t get any of the template filters to use one of the html files, so temporarily have it working with the index.php file as:

wp_head();
block_header_area();
block_template_part( 'page-inner' );
wp_footer();
block_footer_area();

And… its almost all working? But, this can’t be the right way to get it to use the new default page template in the block theme.

Thoughts? Ideas? How can I get it to use the new theme templates?

Thanks!

Is there an admin tool like Shadowban for a user?

Published on July 14th, 2022 by neon67

Is there an admin tool like Shadowban for a user? So the user does not see that toxic
post invisibly – the admin and the author of the message still see the text only, but no one else from the forums.
* This is a gentle way to put out a possible outbreak of conflict)

Search displays hidden forums to participants

Published on July 14th, 2022 by WPSOLR

Hi,

1) I created a hidden forum with topics and replies as a keymaster
2) I logged in as a Participant
3) A search will not display topics and replies as expected, but the forum itself is displayed!
4) Clicking on the forum shows a 404 page, as expected

bbPress 2.6.9

Posts are missing dates

Published on July 14th, 2022 by cathyskach

I’ve tried everything I can think of to get the date to appear on posts. Nothing seems to work.

The site I’m working on is https://rosecityyachtclub.org/ WP v. 6.0.1, BBPress v. 2.6.9. Theme is Lyrical and parent theme is Primer.

Thanks for any suggestions!

Is bbPress no longer being updated?

Published on July 13th, 2022 by rinde

Is bbPress no longer being updated?

It shows Last Updated: 8 months ago Untested with your version of WordPress

We are on WordPress 6.01.
I want to buy a theme for bbPress but am afraid it won’t work since it hasn’t been updated in so long 🙂

Can Keymasters be limited to one forum?

Published on July 13th, 2022 by sruddy

Hi All,
I have given a user Keymaster level however there have been problems with him not adhering to my guidelines on what they can change. If I could restrict their keymaster level to one individual forum and it’s subforum this would solve my dilemma! 🙂 Can this be done?

Skip to toolbar