Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 5,051 through 5,075 (of 64,515 total)
  • Author
    Search Results
  • #208790

    In reply to: Syntax Highlight

    Chuckie
    Participant

    I just wanted to point out that Enlighter is a fantastic plugin for syntax highlighting.

    Enlighter – Customizable Syntax Highlighter

    The current version works with bbPress 2.6 although it has a conflict of interest with one feature. It is discussed here:

    https://github.com/EnlighterJS/Plugin.WordPress/issues/211

    At the moment I don’t really know how I can supress the conflicting CSS styles referred to in the above link.

    I should also point out that at the moment the version 4 beta is not working with bbPress yet. Although, it is supposed to resolve the aforementioned issue concerning conflicting CSS styles.

    Eitherway, I am happy to know about Enlighter. Thumbs up from me!

    #208786

    In reply to: Character Count

    jemar707
    Participant

    I tried to post as code….will try again. But this didn’t work.

    function rew_max_length ($reply_content) {
    	if (strlen($reply_content)<500) {
    		bbp_add_error( 'bbp_reply_content', __( '<strong>ERROR</strong>: Your reply must be less than 500 characters.', 'bbpress' ) );
    	}
    return $reply_content ;
    }
    
    add_filter( 'bbp_new_reply_pre_content', 'rew_max_length' );
    #208783

    In reply to: Character Count

    Robin W
    Moderator

    I don’t know how technical you are, this one does the opposite

    function rew_min_length ($reply_content) {
    	if (strlen($reply_content)<61) {
    		bbp_add_error( 'bbp_reply_content', __( '<strong>ERROR</strong>: Your reply must be at least 60 characters.', 'bbpress' ) );
    	}
    return $reply_content ;
    }
    
    add_filter( 'bbp_new_reply_pre_content', 'rew_min_length' );
    #208768

    In reply to: 404 after update

    andrew55
    Participant

    Oddly, the sidebar content for user shows (username, links to topics, etc.) even though there is a 404 error where the main forums should be. I tried running bbPress with almost all plugins disabled and default theme enabled – still get the 404. But when main page is refreshed, forums display correctly.

    #208762
    Robin W
    Moderator

    sorry, we only fix bbpress issues πŸ™‚

    #208754
    Afreko Media
    Participant

    Hi again Robin,

    Trying my luck now as it’s no longer for the bbpress part of the page but I’m facing a similar issue with a post carousel I have.

    carousel

    I tried editing the css code you provided me but with no luck.

    Any suggestion?

    Thank you,
    Kev

    #208753
    pil91
    Participant

    Hi
    I have the following trouble with the ‘Hello’ theme :
    The bbPress root ‘forums’ isn’t displayed correctly with Hello although it’s ok with ‘twenty twenty’.
    hello vs twenty

    #208749
    jemar707
    Participant

    Thank you! I sent some love through PP on your website for all your work! Hoping I can take this and make it work for topics too.

    I tagged you in an old separate topic if you have any solutions for my replies problem on the front end:

    Redirection when newest replies are at the top.

    #208748
    Robin W
    Moderator

    basically bbpress has the ability to add columns via a filter

    This should do it

    add_filter("bbp_admin_replies_column_headers", 'rew_IP_column_add');
    add_filter("manage_reply_posts_custom_column", 'rew_IP_column_value', 10, 3);
    
    function rew_IP_column_add($columns)  {
    	$new = array();
      foreach($columns as $key => $title) {
        if ($key=='bbp_reply_forum') // Put the forum ID column before the Replies forum column
          $new['rew_id'] = 'IP Address';
        $new[$key] = $title;
      }
      return $new;
    }
    	
    function rew_IP_column_value($column_name, $id) {
    		if ($column_name == 'rew_id') echo get_post_meta( $id, '_bbp_author_ip', true );
    }

    Put this in your child theme’s function file – or use

    Code Snippets

    #208739

    In reply to: Shortcode

    Matthias
    Participant

    I found this code and can now show five popular entries on my frontpage πŸ™‚
    // Top five of bbpress on startpage
    function rk_top_five_view() {
    bbp_register_view( ‘top-five’, __( ‘5 Most Popular Topics’ ), array(
    ‘meta_key’ => ‘_bbp_reply_count’,
    ‘posts_per_page’ => ‘5’ ,
    ‘ max_num_pages’ => ‘1’,
    ‘orderby’ => ‘meta_value_num’ ),
    false );
    }

    add_action( ‘bbp_register_views’, ‘rk_top_five_view’ );

    Thanks
    Matthias

    #208732
    thomei
    Participant

    @lflier
    Wow, this really solves the issue with Visual Editor content styling. Thank you very much!

    unction bbp_enable_visual_editor( $args = array() ) {
        $args['tinymce'] = array( 
                'content_css' => '/wp-content/themes/mytheme/css/tinymce-editor.css',
            );
        return $args;
    }
    add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );

    How to add this to: https://codex.bbpress.org/enable-visual-editor/ ?

    #208667
    Robin W
    Moderator

    not certain this will work, but put this in the custom css area of your theme

    #bbpress-forums ul li::before {
    content : none !important ;
    }
    #208661
    Afreko Media
    Participant

    Hi there,

    New to bbpress plugin and we’re busy setting it up. Upon installation we noticed that some icons are rendering in the forum which I quickly found out shouldn’t be there.

    Any one that know how to remove these orange icons from the forum part?

    Annotation-2020-02-13-100721

    Any help is appreciated.

    Thanks,
    Kevin

    #208643
    burhi
    Participant

    Hi,

    remove_filter( 'bbp_get_reply_content', 'bbp_make_clickable', 4);
    remove_filter( 'bbp_get_topic_content', 'bbp_make_clickable', 4); 

    not work bbpress 2.6.4

    is there any new code?

    #208637
    Robin W
    Moderator

    registration is a function of WordPress, not bbpress.

    you can switch it off using

    Disable New User Notification Emails

    #208635
    Robin W
    Moderator

    ok, can you list them here and I raise a ticket for you – I’m not a bbpress author, just someone who helps out on here.

    #208632
    Robin W
    Moderator

    ok, you should only receive bbpress emails when you create a topic or respond to a reply, and tick the ‘Notify me of follow-up replies via email’ like the one below the reply box on this thread.

    can you specify a couple of examples of what you are getting ?

    #208631
    mrmut
    Participant

    1. No additional plugins, vanilla bbPress
    2. if you mean in the front end, then no, I just created a form
    3. no

    This is just a simple forum for about 20-30 local guys to chat and joke around.

    (I like the avatar BTW)

    #208630
    Robin W
    Moderator

    bbpress only send out emails you ask it to !!

    1. are you using additional bbpress related plugins?
    2. are you subscribed to forums?
    3. are you using buddypress?

    #208629
    Robin W
    Moderator

    your best bet would be to raise a trac ticket with a list of missing labels

    https://bbpress.trac.wordpress.org/

    #208627

    In reply to: Can’t find settings

    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, and see if this fixes.

    Plugins

    If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Then come back

    #208624
    whonickedmyname
    Participant

    Hi,

    I’m currently testing bbPress (with the default plugin templates/themes) and have noticed that a number of inputs do not have labels associated with them. I run a number of sites that require we meet a standard of WCAG 2.1 AA.

    Is this something that is likely to be amended in upcoming versions?

    And does anyone have any advice regarding making bbPress compliant?

    Thanks
    Laura

    #208620
    bigskyry
    Participant

    @suranodsk yes, we’ve been through quite a lot of analysis.

    The primary issue is that the new post select and post write queries are taking about 3x longer on 2.6 than on the latest previous version of 2.5.x, and we’re trying to figure out why.

    We’ve run extensive new relic tests and it has isolated the specific queries as the culprit. Otherwise, there’s no other issues with our host or our site that is causing the slow query times.

    So, there’s something in the new 2.6.x bbpress query engine that seems to be less efficient for large databases than in the 2.5.x query engine.

    Sure, we can toss a bunch of server resources, PHP workers, and REDIS at it, but that doesn’t really fit into the bbpress “light and simple” ethos. Lots of performance improvements promised, but when the rubber met the road…

    We’d rather figure out what’s going on structurally with bbPress 2.6 vs. 2.5 than just give up and downgrade to 2.5.

    mrmut
    Participant

    I created a BBpress site, but now I am being plagued by emails of forum activity.

    As I am just an admin, is there a way to set BBPress to send emails of forum activities, registrations and such to another, separate email address and leave me in piece? πŸ™‚

    Thanks

    #208617

    In reply to: HTML in text

    BrokenPixel
    Participant

    I’m never quite sure if I should add to a post that has the same problem, but is obviously unanswered for a long while, or post a new topic. But… our forum also has a very similar issue so it seems sensible to add it here.

    For us, it seems to be specific to text-align (left, right or centre) and for “non-admin” logged in users.

    It displays the html code as is, rather than using it to display the correct text alignment. All other html options in the visual editor we’ve tested so far seem to work – it’s just the text alignment that doesn’t. And only for non-admin users – the html works as it should if an admin user posts.

    <p style=”text-align: right;”>right align</p>

    Hoping for a solution? Am on current versions of bbpress, wordpress and bbp style pack and php version 7.3

Viewing 25 results - 5,051 through 5,075 (of 64,515 total)
Skip to toolbar