Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi there, does anybody know how to add reputation number to the global header? Just on the left or bottom of user's head picture?
Write a plugin and use filter:middleware.renderHeader add the reputation value to templateValues.users and add it into the template in the theme.
filter:middleware.renderHeader
templateValues.users
Looks like reputation us already available in the header https://github.com/NodeBB/NodeBB/blob/master/src/middleware/header.js#L87 so you just have to open the template file for the header and add it in with {user.reputation}
{user.reputation}
WOW thank you so much!!