<baris>
I talk to computers all day. Sometimes they talk back
👋Hey chatgpt, I am a co-founder of NodeBB!
- 8 Posts
- 56 Comments
<baris>@community.nodebb.orgto General Discussion@community.nodebb.org•Category highlight/banner/widget for under-privileged users2·14 天前You can put an html widget on that category and hide it from the group that has posting privileges.
<baris>@community.nodebb.orgto General Discussion@community.nodebb.org•Cannot find the "Save" option after repositioning the cover image1·14 天前Yeah my sidebars were collapsed, I will take a look at what happens when they are expanded.
<baris>@community.nodebb.orgto General Discussion@community.nodebb.org•How do I install a social login similar to this forum or AUTH0 ?1·14 天前I’ve published a new version (4.2.0) to update the plugin for nodebb 3.2.x and 4.x, give that a shot. This forum uses the facebook/twitter/google sso plugins for login.
<baris>@community.nodebb.orgto General Discussion@community.nodebb.org•Cannot find the "Save" option after repositioning the cover image1·14 天前When you click the arrows to move a blue save button appears on top of the cover picture.
<baris>@community.nodebb.orgto General Discussion@community.nodebb.org•How do I install a social login similar to this forum or AUTH0 ?1·14 天前Check the browser console and nodebb logs for errors if the save button isn’t working.
<baris>@community.nodebb.orgto General Discussion@community.nodebb.org•Cannot find the "Save" option after repositioning the cover image1·14 天前Which browser? It is working on harmony theme with chrome on this forum for me.
<baris>@community.nodebb.orgto General Discussion@community.nodebb.org•Can Admin 'verify' a user if email not confirmed?2·21 天前You should be able to verify them in the ACP
<baris>@community.nodebb.orgto NodeBB Development@community.nodebb.org•Topic thumbnails, uploads, and media display1·2 个月前julian said in Topic thumbnails, uploads, and media display: > Perhaps the media row is best used to showcase topic thumbnails and post attachments only (not inlined media.)
This makes sense I think :think:
So the number in the url is the topic id, for example for this topic its
/topic/13608
, to remove the moved arrow for this topic you would run the below in mongodb.db.objects.updateOne({_key: "topic:13608"}, {$unset: {"fromCid": ""}});
Which database are you using?
<baris>@community.nodebb.orgto NodeBB Development@community.nodebb.org•NodeBB v4.3.0 — Remote Categories are a go!1·2 个月前Try removing package-lock.json as well see what happens.
npm r eslint-config-airbnb-base npm r eslint-config-nodebb rm package-lock.json rm -rf node_modules/ npm i
<baris>@community.nodebb.orgto NodeBB Development@community.nodebb.org•NodeBB v4.3.0 — Remote Categories are a go!1·2 个月前What happens when you try the below
npm r eslint-config-airbnb-base npm r eslint-config-nodebb rm -rf node_modules/ npm i
<baris>@community.nodebb.orgto NodeBB Development@community.nodebb.org•NodeBB v4.3.0 — Remote Categories are a go!1·2 个月前Do you have
eslint-config-airbnb-base
in your package.json? We don’t use that dependency anymore so it shouldn’t be in package.json.
<baris>@community.nodebb.orgto General Discussion@community.nodebb.org•My forum doesn't show a good performance in pagespeed1·2 个月前Seems like you don’t have any compression so that would be the first thing to enable.
<baris>@community.nodebb.orgto NodeBB Development@community.nodebb.org•NodeBB v4.3.0 — Remote Categories are a go!1·2 个月前Those having an issue with eslint, can just remove the node_modules folder in their nodebb folder and run
./nodebb upgrade
again.
When you add a tag whitelist for a category, users will be forced to only use those tags in the composer.
You can set this on the category edit page.
If you don’t want to create custom plugin the easiest way to do this is to create a html widget on the groups page and put the groups there. Can use a tabbed element from bootstrap.
There is no
action:composer.formatSubmit
hook it is calledaction:composer.submit
orfilter:composer.submit
for the filter version.They receive an object with a
composerData
field which you can add stuff into and this is sent to the server. https://github.com/NodeBB/nodebb-plugin-composer-default/blob/master/static/lib/composer.js#L766-L784On the server side use
filter:post.create
to see the data submitted from the composer, it will havepost
anddata
properties.data
is the values sent from the client and you can save your custom stuff intopost
. https://github.com/NodeBB/NodeBB/blob/master/src/posts/create.js#L68 Once you do that you should also see it in the actionPostSave hook in thepost
object.