Skip to content

Request | beautiful theme with Hebrew support

Moved NodeBB Development

Suggested Topics


  • Hiring: NodeBB developer to customize themes

    Moved NodeBB Development
    1
    0 Votes
    1 Posts
    356 Views
    S
    Hey, We are looking to hire someone to do some custom theme work with either the persona or material theme for one of our clients. Please email me sterling [at] luceosports [dot] com with the subject 'NodeBB Development' if interested. Thanks, Sterling
  • what is the best way to debug theme?

    NodeBB Development
    2
    0 Votes
    2 Posts
    400 Views
    PitaJP
    Use grunt: https://docs.nodebb.org/configuring/running/#grunt-development It will automatically rebuild what is necessary and restart when you make a change.
  • Few questions about themes

    Moved NodeBB Development
    2
    0 Votes
    2 Posts
    590 Views
    M
    Kaas.wtf is mine, it's the Persona theme with a lot css changes. Persona is the default theme
  • Persona child theme

    NodeBB Development
    4
    0 Votes
    4 Posts
    783 Views
    SimosS
    I've solved "nbbpm" compatibility tag need to be in theme package.json, pheraps should be a good idea add it to the quickstart theme on github
  • requesting user reputation

    NodeBB Development
    9
    0 Votes
    9 Posts
    3k Views
    E
    @yariplus said in requesting user reputation: Sure. Here's the custom-pages render function as an example. https://github.com/psychobunny/nodebb-plugin-custom-pages/blob/master/library.js#L18-L23 You can modify it to add getUserUsers to the render vaiables, using the req.uid var User = module.parent.require('./user'); function renderCustomPage(req, res) { var path = req.path.replace(/\/(api\/)?/, '').replace(/\/$/, ''); User.getUserFields(req.uid, ['username', 'topiccount', 'reputation'], function (err, user) { if (err || !user) user = null; res.render(path, { title: plugin.pagesHash[path].name, user: user }); }); } Now on all the custom pages templates, the variable {user.reputation} will be available. (and undefined for guests) works perfect @yariplus 4 president

Looks like your connection to NodeBB Community was lost, please wait while we try to reconnect.