You could potentially use custom css to make the footer a position: absolute
element, not sure how it would look though since the nested replies are displayed there as well.
Gamers
Pew pew pew... Yeah... Gamers...
Posts
-
Post spacing -
nodebb custom plugin does not work@fahx00s post your custom plugin on github so we can see the code. If the client side js isn't executed properly that's likely a build issue.
-
User, group, tag and more pages do not have canonical URL@Justas-Azna I believe query params are supposed to be in canonical links if they change the content of the page, like
?page=x
or in the case of/users
the?section=x
query param which controls which list of users to display.@busker the previews are created by https://community.nodebb.org/topic/17384/nodebb-plugin-link-preview-rich-embeds-and-link-previews
-
Post spacingThat posts have tools on the bottom right which is causing that space.
-
Persona logo too smallYou can use the custom css tab to change the height on persona, something like below.
.header .forum-logo { max-height: 75px; // default is 50px for persona width: auto; }
-
Email missing while API create userYou can read more info here https://community.nodebb.org/topic/16962/all-about-emails-and-how-they-re-used-in-nodebb, tldr version is passing in email to user.create only sends a confirmation email to that email and doesn't set the email to the user account. Only when the user clicks the link in the confirmation email it is set into the user account.
-
Email missing while API create userThat route should work if the calling user is a privileged user like an admin and
skipConfirmation
is passed in req.bodyusersAPI.addEmail = async (caller, { email, skipConfirmation, uid }) => { const isSelf = parseInt(caller.uid, 10) === parseInt(uid, 10); const canEdit = await privileges.users.canEdit(caller.uid, uid); if (skipConfirmation && canEdit && !isSelf) { if (!email.length) { await user.email.remove(uid); } else { if (!await user.email.available(email)) { throw new Error('[[error:email-taken]]'); } await user.setUserField(uid, 'email', email); await user.email.confirmByUid(uid, caller.uid); } } else { await usersAPI.update(caller, { uid, email }); } return await db.getSortedSetRangeByScore('email:uid', 0, 500, uid, uid); };
-
User, group, tag and more pages do not have canonical URLadd some missing canonical tags · Issue #12961 · NodeBB/NodeBB
from https://community.nodebb.org/topic/18467/user-group-tag-and-more-pages-do-not-have-canonical-url
GitHub (github.com)
-
User, group, tag and more pages do not have canonical URL@Justas-Azna I will look into adding those missing canonical tags.
-
[nodebb-theme-peace] Peace Theme for NodeBBI've setup a demo site for peace theme at https://peace.nodebb.org. Should we setup one for nodebb-theme-lavender as well?