Skip to content

NodeBB upgrade now cant post

Solved Bugs
  • On my site An annoying ‘n out of n’ banner comes over the reply button, and the forum bar is just below that
    So I can just see a fraction of the reply button but cant click it.
    I cant even screenshot it to show example now as that seems ‘disabled’ as a new ‘feature’

    Id like to stop screenshot disabled, and remove this ‘8 out of 8 banner’. Is that possible?

  • I’ve just seen the duplicate post on NodeBB. Can you go to /admin/plugins/harmony and match the settings below then save

    Screenshot_2023-05-28-11-10-14-46_e4424258c8b8649f6e67d283a50a2cbc.jpg

    That issue is caused by element positioning where the bottom bar should auto hide to prevent that issue. If that doesn’t work, disable the quick reply feature and see if that helps.

  • @Panda NodeBB doesn’t disable the ability to take a screenshot. That’s at operating system level not application, so something else is stopping that.

    I’ll need a screenshot of sorts, or access to your forum to be able to see what’s going on.

  • I’ve just seen the duplicate post on NodeBB. Can you go to /admin/plugins/harmony and match the settings below then save

    Screenshot_2023-05-28-11-10-14-46_e4424258c8b8649f6e67d283a50a2cbc.jpg

    That issue is caused by element positioning where the bottom bar should auto hide to prevent that issue. If that doesn’t work, disable the quick reply feature and see if that helps.

  • Thanks, can post now.
    I find it disconcerting that ‘out of the box settings’ dont work. If it wasnt for your help I would have broken forum now!
    Thats why sometimes I double post urgent questions on both forums as I appreciate your fast and accurate responses 🙂

  • @Panda yes, for some reason, that is the case. If you need an urgent response, it’s probably better to post here because of the time difference.

  • phenomlabundefined phenomlab marked this topic as a question on
  • phenomlabundefined phenomlab has marked this topic as solved on

Did this solution help you?
Did you find the suggested solution useful? Why not buy me a coffee? It's a nice gesture, and a great way to show your appreciation 💗

  • Nodebb 3.2.2

    Bugs
    27
    11 Votes
    27 Posts
    1k Views

    @crazycells yes, I’ve just seen that and modified the post. It seems to only happen if you have a space between the “greater than” symbol and the actual text.

    Clearly a markdown thing.

  • 4 Votes
    11 Posts
    337 Views

    @DownPW I’d have to agree with that.

  • Composer options on nodebb

    Solved Configure
    8
    3 Votes
    8 Posts
    289 Views

    @Panda You should be able to expose the CSS for these using F12 to get into console

    3591518c-e3a3-4ada-a43c-6b32a5e0359c-image.png

    a2b8ed46-4157-4ff2-85f0-576543380107-image.png

    That should then expose the element once selected

    89d9c545-a47a-40d1-98f4-80cf3b958e8f-image.png

    Here’s the below CSS you need based on the screenshot provided.

    .composer .formatting-bar .formatting-group li[data-format="picture-o"], .composer .formatting-bar .formatting-group li[data-format="spoiler"] { display: none; }
  • 2 Votes
    2 Posts
    121 Views

    @dave1904 that’s a really good point actually. I know it was there previously on Persona, but you’re right - no such function exists on harmony.

    However, putting something in place to mimick the behaviour of Persona won’t be hard from the js standpoint, although I wonder if perhaps we should ask the NodeBB developers is this feature was overlooked?

  • Email validation NodeBB

    Bugs
    21
    3 Votes
    21 Posts
    879 Views

    @Panda said in Email validation NodeBB:

    Did you configure that as a custom change to the usual quote icon. How do you do that?
    I notice on NodeBB site its a solid blue quotes

    Yes, I changed it. NodeBB by default users the free font awesome library whereas I use the pro (paid) version SDK have access to a wider set of icons, and at different thicknesses etc. The change of colour is just simple CSS.

  • 24 Votes
    25 Posts
    827 Views

    @cagatay Sure. Here’s the light theme CSS file

    https://sudonix.org/assets/customcss/light.css

    Others are as below

    b1072f13-9bea-4129-aa68-ea9edc68830c-image.png

  • Custom badges

    Solved Customisation
    103
    49 Votes
    103 Posts
    9k Views

    Perfect 😉

  • Rotating homepage icons, gifs?

    Solved Configure
    2
    3 Votes
    2 Posts
    195 Views

    @eveh It’s not a GIF, no. It’s actually a webp file so made much smaller, and uses keyframes to control the rotation on hover. You can easily make your own though 🙂

    The CSS for that is as below

    @keyframes rotate180 { from { transform: rotate(0deg); } to { transform: rotate(180deg); } } @keyframes rotate0 { from { transform: rotate(180deg); } to { transform: rotate(0deg); } }

    Your milage may vary on the CSS below, as it’s custom for Sudonix, but this is the class that is used to control the rotate

    .header .forum-logo, img.forum-logo.head { max-height: 50px; width: auto; height: 30px; margin-top: 9px; max-width: 150px; min-width: 32px; display: inline-block; animation-name: rotate180, rotate0; animation-duration: 1000ms; animation-delay: 0s, 1000ms; animation-iteration-count: 1; animation-timing-function: linear; transition: transform 1000ms ease-in-out; }