Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 5,326 through 5,350 (of 64,297 total)
  • Author
    Search Results
  • #205704
    pipipi07
    Participant

    To @casiepa
    Before 5.3, we used 5.2.4 WordPress.
    bbpress is 2.5.14 is the last version.

    #205703

    bbPress 2.5.10 did fix a bug that was causing maximum title lengths to not be enforced, and this was part of 2.6 as well. It does use '8bit' encoding, but perhaps 'UTF-8' would be better. I think @casiepa is doing some digging to figure this out exactly.

    #205700
    willysbd
    Participant

    Hello!
    Is it possible to link WordPress user role with bbpress user role?
    For example, I have users on WordPress who are “subscribers”, but if they stop paying they automatically go to “customers”.
    I would like to automatically convert a “customer” in WordPress to “locked” in bbpress.
    This is possible? how?
    Thanks!!!

    #205693
    creativersis
    Participant

    We used the plugin “Moderation tools”. I deactivated that now (I just saw that it was updated a long time ago)…

    Us there any possibility of holding topics for moderation without a plugin? Some bbpress native function?

    #205690

    In reply to: BB Press Version 2.6.1

    Before these recent plugin updates, it showed the subforums in a vertical list

    This will require some CSS for you to get back. The markup used for separating subforums went back and forth for a little while, and we ultimately settled on something simpler.

    /* Remove comma */
    #bbpress-forums .bbp-forums-list .bbp-forum.css-sep:not(:last-child)::after {
        content: '';
    }
    
    /* Make vertical */
    #bbpress-forums .bbp-forums-list .bbp-forum {
        display: block;
    }
    

    it only displays for 1 of them

    I see now what you mean. It’s fixed, but not completely. Thanks. Will look into this also!

    #205688
    Gunilla
    Participant

    Our bbpress forum needs login. Information about the inlogged members – their profiles – is visible for anybody who search in Google. However, the posts seem not to be searchable in Google. Is it possible to hid the profiles for being public?

    #205685

    In reply to: BB Press Version 2.6.1

    hyo1990
    Participant

    Thanks for the response.

    It’s on this section: https://ibb.co/QmrFwdr

    Before these recent plugin updates, it showed the subforums in a vertical list (ban appeals/ ban requests / vouch requests, etc.) – and it was working for both forums (Defense of the Ancients and Legion Tower Defense)

    Since the upgrade to 2.6.1 , it only displays for 1 of them as you can see, and even that one, is horizontally (not vertical anymore)

    I’ve tried looking at the bbpress settings, but it doens’t seem like there’s anything i can do on my side to rearrange it (and it was working as mentioned before this recent update..)

    #205679
    hyo1990
    Participant

    Hi there,

    I’ve updated the plugin BB Press to the latest version (2.6.1), but the subforums display situation isn’t solved (We have 2 forums (Defense of the ancients & Legion Tower Defense) with subforums associated – The 1st one displays them in a incorrect way, and the 2nd doens’t display at all)

    Tried searching the previous topics, but coulnd’t find any information regarding it (after the release of 2.6.1)

    Thanks in advance

    Wordpress: version 5.3
    BBPress: version 2.6.1
    Website: https://firstbloodgaming.com/forums/ (which is the affected page)

    #205677
    pipipi07
    Participant

    If default=21, I was able to input 7 characters in Japanese!
    Apparently, 18-20 can be up to 6 characters, 21-23 can be up to 7 characters, 24 can be up to 8 characters in Japanese. This was a new discovery!

    When bbPress was changed to 2.6, wordpress was upgraded to 5.3 as well. As you say, it may have an impact. I will try a little more to find out what’s wrong.
    For the time being, I decided to set 60 instead of 20.

    Thank you for your cooperation!

    #205671
    stracy2
    Participant

    Robin,

    I can confirm the quoted method works using bbPress 2.6 RC 7.

    I’m grateful for the help.

    Thanks.

    #205661

    In reply to: Child CSS

    Sorry, but bbPress 2.6.1 just went out without this fixed.

    (There were a few issues that needed fixing ASAP.)

    As soon as we have this figured out, another new bbPress release will happen.

    Thanks for helping and being patient! 🙏

    #205659

    In reply to: Child CSS

    hydrogriff
    Participant
    • Yes. W3TC with CSS minification.
    • Yoast SEO. As far as I know, it doesn’t interact with CSS files.
    • No.
    • No.

    Related change test: Tested with both screen and all. Did not work.

    Additional information:

    I have dequeued bbpress stylesheets for non-bbpress pages, using the below code.

    
    function dequeue_bbpress_style() {
        if ( class_exists('bbPress') ) {
          if ( ! is_bbpress() ) {
            wp_dequeue_style('bbp-default');
            wp_dequeue_style( 'bbp_private_replies_style');
            wp_dequeue_script('bbpress-editor');
          }
        }
    }
    add_action( 'wp_enqueue_scripts', 'dequeue_bbpress_style', 99 );
    

    I hope this helps.

    I also noted another issue where the replies were not loading (both topic replies and threaded replies) for any topics.

    #205658
    Chuckie
    Participant

    In the admin area we have several menu items in various places:

    Topics
    Replies
    Forums
    Tools – Forums
    Settings – Forums

    Is it not possible to have them grouped together? At least first three in BBPress menu?

    #205657

    In reply to: Child CSS

    Subforums are not listed.

    The subforums not being listed will be fixed in 2.6.1.

    A few more questions:

    • Using any caching plugins?
    • Using any SEO plugins that might be interacting with CSS files?
    • Using a right-to-left language?
    • Overriding any constants? (WP_CONTENT_DIR, WP_PLUGIN_DIR, WP_THEME_DIR, etc…)

    Anything else about your WordPress installations you can share?

    The only related change I can find, is: https://bbpress.trac.wordpress.org/ticket/3012

    If you’re able to edit that file in bbPress directly, and revert it back, and test, that would be super helpful to confirm or disconfirm if that does it.

    #205655

    In reply to: Child CSS

    hydrogriff
    Participant

    Hi JJJ,

    Renaming to bbpress.min.css brings the style back. Yes, the bbpress.css is inside a subdirectory css.

    Also, the subforum is not appearing. And I see two favorite and subscribe elements in the topic page now.

    #205654

    In reply to: Child CSS

    One last question:

    Are your bbpress.css files in the root of your theme directory, or under a subdirectory?

    Like…

    • css/bbpress.css
    • assets/css/bbpress.css

    etc…

    #205650

    In reply to: Child CSS

    sbmar
    Participant

    I threw all of my bbpress.css code into the bbpress.min.css file and it all became included at that point. Not sure I like that but at least it works…

    #205647

    Thanks for reporting this here. I’ll look into it.

    This probably will not be fixed in bbPress 2.6.1, but will be a priority afterwards.

    #205646

    In reply to: Child CSS

    Thanks everyone for the details here.

    For those who had a bbpress.css file, can you try renaming it to bbpress.min.css and see if it gets included now? I have a theory on what’s going on, and your feedback will help me narrow it down.

    #205643

    Different themes use different styling for different reasons.

    If I recall correctly, Twenty Seventeen does not use the text-decoration attribute, but rather uses some kind of text-shadow or bottom-border. It’s a weird anomaly with how that theme decided to do things.

    It’s nearly impossible for bbPress to work perfectly with all themes, but we do try to keep the default styling working well with the themes that come bundled with WordPress.

    This should be solvable with a bit of custom CSS. I’ll create a Trac ticket and see if we can bring this back for you with this theme specifically.

    #205642

    This will be fixed in bbPress 2.6.1.

    See: https://bbpress.trac.wordpress.org/ticket/3280

    #205635
    #205632

    Hey there! Sorry that 2.6 is giving you trouble.

    bbPress roles are somewhat tricky, but not too much has changed, so it shouldn’t be too hard for us to figure it out.

    We’ll need to see the code that you used to make your custom Roles. If you can include it or link to it here, that will be really helpful.

    This will be fixed today in 2.6.1. Sorry for the trouble!

    See: https://bbpress.trac.wordpress.org/ticket/3232

    #205630
    quoctai101
    Participant

    Hi,

    I’m currently using BuddyPress, bbPress, and Image and video gallery from Google Drive (all are latest updated). The plugin “Image and video gallery from Google Drive” provides a shortcodes is [sgdg path=”MyPath”]. I tried installing “bbPress – Do Shortcode” and it worked. However, the javascript file for loading is missing. Anyone can help me out please?

Viewing 25 results - 5,326 through 5,350 (of 64,297 total)
Skip to toolbar