Skip to content

General Discussion

A place to talk about whatever you want

3.9k Topics 23.9k Posts
  • Custom Emoji Support for recent cards

    4
    +0
    0 Votes
    4 Posts
    599 Views
    dave1904D
    Thanks @PitaJ I've created a plugin using @baris and your intended solution found here. Unfortunately there is no impact to the recent cards plugin or any other teasers. No regarding error or warning found in the nodebb log. This is part of the log when I run ./nodebb dev: verbose: [plugins] Loaded plugin: nodebb-plugin-teaser-image verbose: [plugins/fireHook] filter:teasers.configureStripTags Plugin is as basic as it can be: index.js: 'use strict'; var plugin = {}; plugin.filterTeasersConfigureStripTags = async function (hookData) { // Check if the "img" tag is present in the tags array if (hookData.tags.includes('img')) { // Remove the "img" tag from the tags array hookData.tags = hookData.tags.filter(tag => tag !== 'img'); } return hookData; }; module.exports = plugin; package.json: { "name": "nodebb-plugin-teaser-image", "version": "1.0.0", "description": "NodeBB Plugin to show images in teasers", "main": "index.js", "dependencies": {}, "nbbpm": { "compatibility": "^1.0.0 || ^2.0.0 || ^3.0.0" } } plugin.json: { "id": "nodebb-plugin-teaser-image", "name": "Show images in Teasers", "description": "A NodeBB plugin to show images in teasers", "version": "1.0.0", "hooks": [ { "hook": "filter:teasers.configureStripTags", "method": "filterTeasersConfigureStripTags" } ] } Anything I have overlooked?
  • Change chevron-up icon to thumbs-up icon in votes

    11
    0 Votes
    11 Posts
    1k Views
    julianJ
    @omega when everything is !important what truly is important?
  • Add likes dislike on topic list

    2
    +0
    0 Votes
    2 Posts
    313 Views
    <baris>B
    https://community.nodebb.org/topic/16613/upvote-downvote-function-on-topic-level
  • URGENT, Cannot install on Rocky 9

    66
    0 Votes
    66 Posts
    12k Views
    N
    LOL, I thought a nodebb option was being mentioned. Yes, I usually have it set as a service but I wanted to monitor it for a while before doing that on the new server.
  • socket.io and Tor problematic to run

    15
    0 Votes
    15 Posts
    1k Views
    NikolaiPatrushevN
    @eeeee I totally agree less frameworks , then all stable and better.
  • Docker image update

    1
    0 Votes
    1 Posts
    271 Views
    carlm7C
    Does anyone know how I can check when this will be updated please? https://hub.docker.com/r/nilsramsperger/nodebb/tags I'm using Elest.io to manage my NodeBB installation and I'm looking to update to the newest version. Thanks.
  • Change digests/emails

    6
    0 Votes
    6 Posts
    659 Views
    PitaJP
    @DanAdair in the customize plugin, you want to customize translations. There are a couple you might be interested in. First select the email namespace, then look for greeting_with_name and digest.title.<period> You can then customize the wording.
  • New users - "no email" in admin panel

    8
    +0
    1 Votes
    8 Posts
    816 Views
    <baris>B
    @btc I plan on improving the manage/users section. Right now it shows (No email) for everyone even if they have entered an email during registration. [image: 1685911072371-current.png] So there is no way to tell which of these users left the email field empty or have a pending/expired verification email. Gonna try to change it so it looks like below. [image: 1685911189527-new.png] After that you should be able to manually verify them from the ACP or resend the confirmation email. Right now as you already figured out the confirmation email expires and there is no record of the email it was sent to so the resend in the ACP and manual verification doesn't work.
  • Posts are pending

    4
    0 Votes
    4 Posts
    408 Views
    phenomlabP
    @intel hi. If you use the post queue function which I'd recommend, then yes, you can control what gets posted and what you'd simply delete. The great thing about the queue is that only admins and mods can see it. You then decide if you want to permit it or not.
  • Does NodeBB work on Android smartphones?

    16
    0 Votes
    16 Posts
    4k Views
    phenomlabP
    @zakcharyzelish the likelihood of anyone responding here is going to be almost zero. This post is 9 years old and the NodeBB and technology world has completely changed.
  • Font Awesome slows to a crawl

    1
    +0
    1 Votes
    1 Posts
    170 Views
    phenomlabP
    There appears to be an issue with loading kits from Font Awesome. Super slow currently. [image: 1685468438223-712852a2-8d60-4535-947f-9779a1c4ce36-image.png]
  • What is NodeBB for ChatGPT

    4
    2 Votes
    4 Posts
    930 Views
    crazycellsC
    @omega well, there are rules to follow... [image: gizmo-gremlins.gif]
  • what theme is this forum using?

    9
    0 Votes
    9 Posts
    4k Views
    James StuartJ
    I am new to this site, but this looks great.
  • Topic form set show preview by default

    5
    1 Votes
    5 Posts
    562 Views
    vijay kumavatV
    Thanks @baris
  • This topic is deleted!

    6
    0 Votes
    6 Posts
    31 Views
  • This topic is deleted!

    6
    0 Votes
    6 Posts
    24 Views
  • Account destroyed upon signing in with second OAuth provider

    2
    0 Votes
    2 Posts
    195 Views
    julianJ
    @Kelbin-Michal Was this here? Which two accounts were you referring to?
  • Google Adsense 0 click "bug" - affecting you?

    1
    1 Votes
    1 Posts
    435 Views
    omegaO
    Ya "bug", sure... https://www.seroundtable.com/google-adsense-0-clicks-bug-35249.html https://support.google.com/adsense/thread/209248047/adsense-bug-please-fix-0-clicks-issue-started-since-march-2023-for-many-publishers Anyone else experience this recently and it's still a live issue.
  • 0 Votes
    4 Posts
    469 Views
    B
    I think this can be done by change regex parsing the width and length of the image in markdown or external plugin. For example default markdown syntax for images ![text](image.jpg), we can change it to ![text](image.jpg|200x400) and set value in style of image like style="width:200px; height:400px"
  • System Tags

    5
    0 Votes
    5 Posts
    860 Views
    Mikkel LindhardM
    Thanks for the quick answer, @baris! Regarding how it works in the front end: If the user has permission to system tags, they will appear when entering the tag name (suggest search). The system tags will not be visible to users that don't have permission.