[nodebb-plugin-ns-custom-fields] NS Custom Fields
-
I see.
Answer will be simple: this plugin supports Vanilla/Levander and Persona, and themes that are derived from them.
Plugin isn't aware about custom themes, even if it uses widgets, It's up to theme developer to declare them. -
@itsCrafted said:
through redis-cli
Yes. User fields are stored in Database, you can edit them directly if you wish.
They could be found via key:user:X:ns:custom_fields
, whereX
is an user identifier. -
Version 2.0.0
New version is released. No new features, main idea to be compatible
- Compatibility with NodeBB v0.8
- ACP: refreshed look
Install updated version via Plugins section in ACP
-
It isn't compatible with 0.9, especially because of UI changes in 0.9 to profile page.
Also, I'm considering better options for this plugin:User Settings: hook? 路 Issue #3837 路 NodeBB/NodeBB
I saw you did changes to user's settings page? Did you add some hook so additional buttons/actions can be added? Is it a good idea to have hook for such button? Real Example: Edit Custom Fields, and by clicking it, user will visit dedica...
GitHub (github.com)
For now, if 0.9 update isn't critical for you, stick with 0.8
-
Version 3.0.0
New version is available. Summary: changed idea how plugin integrates with User's page.
- Compatibility with NodeBB
v0.9.1
- Introduced dedicated page for custom fields (i.e.
/user/nicolas/custom-fields/edit
). Removed dependency on Account's Edit Page (i.e. no dependency on theme). - Profile page: added new Flex template that could be used with Persona Theme
- Compatibility with NodeBB
-
I have two suggestions what I see in other f贸rum CMS.
1 - Support to links(Field type): I define URL of the custom field in ACP:
[link_what_i_want(ex: https://twitter.com)]: [user_information(MyTwitter@UserName)] and the hook give me a result like this: "Twitter: ins"2 - Support to images or icons in setup to show in templates, like this http://i.imgur.com/7aLADPS.png - This is an extension of first suggestion;
-
Hi,
The update added a separate page for the custom fields, and I wanted to know whether I could still add the custom fields on the user profile 'edit' page instead of a separate page.
Thanks
-
There is no such way. Current implementation It's like best practice from NodeBB Team.
-
Version 4.0.0
New version is available. Summary: focus on UX in ACP panel and integration with Persona based themes.
- Use ACP Scripts capabilities of NodeBB
- Improved UX of ACP panel: confirmation windows, sort via drag-n-drop, edit
- Seamless field editing for users: sub-page for editing
Preview
-
You should install everything through package manager in ACP.
NodeBB checks compatibilities with plugins. By installing stuff directly vianpm
you are bypassing such checks. -
@Nicolas said:
Version 4.0.0
Well, i couldn't find a Version 4.0.0 in the plugin install section. It says Latest 3.0.1
-
If you can't find it, It means you can't use it
Plugin v4 is for Nodebb v1.x -
How to add a specific custom field only ?
i could add
<!-- IMPORT partials/account/custom_fields_flex.tpl -->
In my theme which display all the custom fields.
The things is i want to add a link on a specific custom field. I tried like :
<a href="{customFields.myfield.value}">link</a>
But it doesn't work.
Any help ?
Thank you.