@Laz Oh, I see... I don't know any solution, sorry.
jtsimoes
Posts
-
Remove Category/Topic Names From Url -
Remove Category/Topic Names From Url@Laz You can use JS replace() function! You just need to find a regex that works with all the pages and put your code on Custom JavaScript on ACP.
object.replace('[regex for what you want to be replaced]','[new string to be replaced there]')
So, your new string should be empty ('') to hide the category/topic name.
Eg. for one page only (because I'm not so good with regex yet ) :
var url = 'https://YourUrl.com/category/3/nodebb-development' url = url.replace('/nodebb-development','') console.log(url) // output: "https://YourUrl.com/category/3"
-
Looking for Theme developer@youhosi (?)
-
Can you use Nodebb for Building a Help Section?@Amrita-Sukumar Just create a new category read-only or a new category with all topics locked and then write there all the FAQ and help tips you want
-
Custom Field that User can't edit?@dcook You can use this plugin to create the custom field: https://github.com/PaciakPL/nodebb-plugin-ns-custom-fields
But this new custom field will be visible for all users, not only for members of certain group as you wanted...
-
Is it possible to show user's gender? -
[nodebb-plugin-poll] Poll plugin@Gremek I confirm. All good using Redis
-
Profile tpl to be included in Widgets (Extend)That would be great for a more easy way to config plugins that add new fields to the profile page, like 'nodebb-plugin-ns-custom-fields'.
We would no longer need to modify the files on the server and we would be able to do this in real time and right on the ACP panel! -
Is there a way to ban an e-mail address or pattern?@Dravere Do you mean like a "e-mail blacklist"? I think there is nothing like that yet.
But that would give a great new feature. And I think it's not hard to be implemented in NodeBB because there is already a blacklist for IPs.
-
my plugin not indexed in nbbpm@Men770 Did you run
npm publish
?And make sure that everything is okay on
package.json
too:@baris said in 1.12.0 Breaking Changes:
We are dropping support for NodeJS v6.x in 1.11.0+.
Please see the following issues for breaking changes to plugins and themes.
https://github.com/NodeBB/NodeBB/issues?utf8=✓&q=is%3Aissue+milestone%3A1.12.0+label%3A"breaking+change+(themes)"+
https://github.com/NodeBB/NodeBB/issues?q=is%3Aissue+milestone%3A1.12.0+label%3A"breaking+change+(plugins)"If you have plugins that are affected, please update your plugin and add the below to your package.json
"nbbpm": { "compatibility": "^1.12.0" }
-
plugin chat -
How to use Nodebb?@Jamesdavide By writing this post, you're already using it
-
Can't find setting for Section Text Color@dcook The color you want to change is not property of the categories, but rather the property of the theme. Black is the theme color for section categories (non-clickable link) and blue is the theme color for non-section/normal categories (clickable link).
That's why there is no option to customize it on categories management.Try this:
.title{ color: blue; }
-
Bug in Group property pageWow, nice find! It's a really important bug. How I had never tested this before?!
-
Can't find setting for Section Text Color@dcook That's because there is no setting for that...
But you can customize it adding this rule to your custom CSS:
.categories li div .title a{ color: blue; }
-
Need help with chat notifications, templateI'm not sure if Material theme keeps the variables equal to the Persona theme, but you need this class on your CSS to not show up any number when your
data-content
is0
ornull
/empty
:.unread-count[data-content]:not([data-content=""]):not([data-content="0"]):after { content: attr(data-content); }
And your line now should be:
<i component="chat/icon" class="fa fa-comment-o fa-fw unread-count" data-content="{unreadCount.chat}"></i>
-
plugin chat@slipknot Hace un tiempo se implementó la capacidad de los administradores para ver los chats de otras personas, pero fue luego removido, ya que es invasión de privacidad.
Ellos dijeron que iban a poner esta funcionalidad en un plugin aparte por separado, pero hasta hoy todavÃa no hay nada.Fuente:
https://community.nodebb.org/topic/9642/new-in-1-2-0/14 -
Breadcrumb missing left paddingSame on Persona theme with Yeti skin