John James Jacoby (@johnjamesjacoby)

Forum Replies Created

Viewing 25 replies - 101 through 125 (of 2,353 total)
  • @johnjamesjacoby

    Keymaster

    It’s hard to see what you mean looking at that query, as there are no site_name type databases before any of the tables.

    Custom prefixes should all be completely accounted for, but I’ll do an audit to be sure and report back.

    The IS NULL meta_key statement is weird.

    Is it possible some other plugin is filtering this query that shouldn’t be?

    @johnjamesjacoby

    Keymaster

    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.

    @johnjamesjacoby

    Keymaster

    You’ll have to write a custom plugin that filters bbp_get_user_role_map and adds a key for the customers role.

    Something like:

    add_filter( 'bbp_get_user_role_map', function( $roles = array() ) {
        $roles['customer'] = 'blocked';
        return $roles;
    } );
    
    In reply to: BB Press Version 2.6.1

    @johnjamesjacoby

    Keymaster

    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!

    In reply to: BB Press Version 2.6.1

    @johnjamesjacoby

    Keymaster

    Everything on your forums looks the way I would expect it to.

    Can you point out with more detail what is not correct? Thanks!

    @johnjamesjacoby

    Keymaster

    Thank you for the help and being patient. Super excited to finally have you updated and happy! 👍

    @johnjamesjacoby

    Keymaster

    This should be fixed in 2.6.1. Let me know!

    @johnjamesjacoby

    Keymaster

    2.6.1 is out now! Thanks for your patience!

    In reply to: Child CSS

    @johnjamesjacoby

    Keymaster

    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! 🙏

    @johnjamesjacoby

    Keymaster

    Nothing like this yet. There is some support started for this idea, but it is not fully implemented.

    For anyone that wants to poke around at the code, search for: bbp_settings_integration()

    In reply to: Child CSS

    @johnjamesjacoby

    Keymaster

    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.

    In reply to: Child CSS

    @johnjamesjacoby

    Keymaster

    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…

    @johnjamesjacoby

    Keymaster

    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.

    In reply to: Child CSS

    @johnjamesjacoby

    Keymaster

    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.

    @johnjamesjacoby

    Keymaster

    Thanks @robin-w for the help, and sorry for the 2.6 trouble. If you need anything, please let me know! 🙏

    @johnjamesjacoby

    Keymaster

    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.

    @johnjamesjacoby

    Keymaster

    This will be fixed in bbPress 2.6.1.

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

    @johnjamesjacoby

    Keymaster

    I was able to duplicate this with Page Links To, and am working on a fix.

    @johnjamesjacoby

    Keymaster

    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.

    @johnjamesjacoby

    Keymaster

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

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

    @johnjamesjacoby

    Keymaster

    Some strings were changed in 2.6.0, and it will take a bit for translators to update things on their end.

    In reply to: lost forum topics

    @johnjamesjacoby

    Keymaster

    Originally you said forums, but now you say subforums.

    Subforums not being listed is a known bug and will be fixed in 2.6.1 tomorrow.

    In reply to: lost forum topics

    @johnjamesjacoby

    Keymaster

    Hey there. That’s no good. None of the data for forums/topics/replies gets modified, so there will not be any data loss. But you are definitely correct that backing everything up is always the smart thing to do! Hopefully we can get you back up and running on 2.6.0 ASAP.

    @johnjamesjacoby

    Keymaster

    Will look into this ASAP. Thanks for letting us know here, and sorry for the trouble.

    In reply to: bbpress update

    @johnjamesjacoby

    Keymaster

    Thanks! I’ll look into 1. 2 is kinda just part of how forums work. The queries are filterable though, so you could definitively reliably change this behavior to suit your needs, and order them by just about anything you’d like.

Viewing 25 replies - 101 through 125 (of 2,353 total)