3.0.0 Bug Report Thread
-
@Wamakaska yeah, refresh page + clear cache in browser not help, on the next time I want to try this method maybe it's help me: https://community.nodebb.org/topic/4199/custom-page-title/18?_=1689509625422
-
Improve User Registration Process – Email Verification Prior to User Creation · Issue #11808 · NodeBB/NodeBB
Description Dear Team, I'd like to bring to your attention an aspect of the user registration process that could be enhanced. Presently, when email verification is set as a mandatory step for registration, the process first creates a use...
GitHub (github.com)
For me, it's better to return the field for the email address back to the registration form (like in old NodeBB version 1.x). With a small note that the postal address can be omitted or it will need to be confirmed. Thats all.
-
off-topic
GitHub can generates dynamic og images?
This needs to be studied, I think it's cool to do something similar for the NodeBB. Generate preview og image for social media via author's avatar and topic title
-
@brazzerstop Yes, they've had support for it since mid-2021
It's cool, but does involve a rather hefty dependency: Puppeteer.
Puppeteer is essentially a headless Chrome instance, and is quiet heavyweight, but it does a lot. So we'd essentially render a little "page" for it, puppeteer takes a screenshot, saves it, and we serve that.
Good candidate for a plugin, though!
-
@julian For getting OG images dynamically for a NodeBB forum I don't fully understand why Puppeteer would be needed. Wouldn't an image library (similar to PHP GD Image) be able to generate images? And then you'd just take information already existing from the post (like title, author, author avatar, etc.) and insert it into an image template of sorts?
-
The
posters
count in topic not reset when we change topic author.Foe example, user Alex create topic, admin change author to user Tom, after this action topic show 2 posters, but it's false.
-
@brazzerstop should be fixed in https://github.com/NodeBB/NodeBB/commit/00be053e948f0db210ba23527aa0ae594540418c, thanks for reporting.
-
next thing: if a
user
becomes flaged for the second (or more?) time, thenotification
shows the first and not the lastuser
who reported. ... and while we are at this topic: we would love to see thetarget
pointing to thepost
it came from with the last report and not to the flaggeduser
or both. [v3.2.3] -
Dear NodeBB Team,
I noticed that the Chats route doesn't display the top menu unlike the Notifications one in v3.2.1 and also v3.2.2.
This is easily replicable here too when navigating to:
https://community.nodebb.org/user/"insertyourusernamehere"/chats
This might be intended or should I create a Github issue?
Thanks in advance! -
@baris May I ask why this is so?
To me, it feels inconsistent with the other routes.
The issue I'm trying to solve is, without the "Home" which isn't a default route if I'm not mistaken, all the page elements, including the menus are moved up and the top ones rendered outside the viewport so it definitely looks broken.
Any pointer to circumvent this (custom css?) is highly appreciated, thanks! -
@erkki70 if you want to bring the header back you can use custom css.
.page-user-chats .brand-container { display: block; }
You will have to modify some of the css for the chat page though as it is designed to be height: 100% to take up all the available space. The
#content
element is height: 100% which will not play nice if you display the header element above it. -
@baris said in 3.0.0 Bug Report Thread:
@erkki70 if you want to bring the header back you can use custom css.
.page-user-chats .brand-container { display: block; }
You will have to modify some of the css for the chat page though as it is designed to be height: 100% to take up all the available space. The
#content
element is height: 100% which will not play nice if you display the header element above it.Thanks for your help!
-