I'm using nodebb-plugin-ns-custom-fields plugin. but it seems not working.I wasn't found the setting page in my acp panel. Does anyone know how to fix this problem or some alternative plugins to add custom fields in user's profile
tagWhitelist customization
-
I want to display the category whitelisted tags and I found out how.
<span>{../tagWhitelist}</span>
The only problem is that the tags have no space after commas, like "abcd,efgh,ijkl" instead of "abcd, efgh, ijkl".
Is it possible to change this somehow? -
I think
tagWhiteList
is an array so you can useBEGIN/END
. Try this<!-- BEGIN tagWhitelist --> <span>@value, </span> <!-- END tagWhitelist -->
-
New syntax:
{{{each tagWhiteList}}} <span>{@value}</span> {{{end}}}
-
Thank you both.
NodeBB is cool. Is there a place where I can find the documentation for the syntax? -
-
@PitaJ one last thing. I found that in config I can set the max length of tags, but in the admin section is ignoring it and falls back to 15 characters.
Is it possible to set for admin too? -
@george_i Please post an issue on our tracker with reproduction steps. Thanks.
-
@baris nevermind, I am new to NodeBB and I was trying to set the max length through an inappropriate method.