Skip to content
  • [nodebb-plugin-olark] Olark Embedding

    NodeBB Plugins
    2
    3 Votes
    2 Posts
    2k Views
    P
    Should have posted this under fake account @Lulian-Jam maybe you could have won!
  • 0 Votes
    11 Posts
    5k Views
    A
    @Ted said: @a_5mith, it used to do something, right? Yeah it used to list all the plugins in npm and (I think) allow you to install them. But this was added to core a fair few versions back. Around 0.3 or 0.4. I hope that's the plugin I'm thinking of.
  • 3 Votes
    7 Posts
    4k Views
    esiaoE
    Fun thing about Apple Safari on iOS the bars that are not removable takes like 100px of the total height resulting in a 400px height canvas for your website and add the keyboard over this to have some fun.
  • 0 Votes
    4 Posts
    13k Views
    G
    @a_5mith That worked! Thank you so much!
  • [Solved] Email Confirmation Link Problem

    General Discussion
    5
    0 Votes
    5 Posts
    3k Views
    julianJ
    use_port is no longer used, just don't put the port number in the url field and set up a reverse proxy (https://docs.nodebb.org/configuring/proxies/nginx/)
  • 0 Votes
    9 Posts
    4k Views
    S
    Some kind of paging function would also be good for mobile devices where RAM is frequently at a high premium. NodeBB causes not-infrequent browser crashes on my iPad2 on longer threads. When I click a link that takes me to the 60th post in a thread or something, there is a long delay as the slower browser begins by loading the op oldest posts in batches. It would be good if there were a way to make it skip doing that and take me directly to the unread posts (without switching the full application to paged mode). Perhaps on mobile devices you could add a secondary navigation bar with the paging functions (arrows, "displaying X-Y of Z", etc).
  • Gotchas for 0.6.0

    NodeBB Development
    1
    0 Votes
    1 Posts
    2k Views
    julianJ
    I know I made a promise to have the 0.5.x branch last more than 2 releases, but we added more breaking changes again, and 0.5.0 hasn't even been released yet In any case, for those plugin developers who are interested: Notification pushed action hook (action:notification.pushed) incoming data has changed: From: An object containing the notification data To: This object -- {notification: notification, uids: uids}); As always, this list will be updated as new breaking changes are added. In the case of this list -- don't commit and publish your change to npm yet, as 0.6.0 has not launched. We recommend you maintain these changes in a separate branch until then.
  • Using NodeBB for a Makerspace

    General Discussion
    2
    0 Votes
    2 Posts
    1k Views
    A
    @arasbm I wouldn't say their was any specific plugins for a makerspace, just a community page would be sufficient. You can create a feedback/suggestions topic, then feedback can be upvoted and sorted by the most upvotes, if you want to use Ghost or Wordpress for your blog, then nodebb-plugin-blog-comments is worth a look. If there's a specific plugin you can't see or need, then you can make a request for it here and someone may like the idea and build it, or send the devs an email and they'll build it for you for a small fee.
  • 0 Votes
    3 Posts
    4k Views
    S
    @psychobunny I'm using current version of nodebb, but i can't find public folder in it, any way i find direct template folder but html i'm giving not working. Please tell me how i have to add header above the nodebb menubar Thanks
  • search not working on my installed nodeBB

    General Discussion
    11
    0 Votes
    11 Posts
    6k Views
    Peter-Zoltan KeresztesP
    I have upgraded to mongodb 2.6.4, I have run the following command to upgrade the mongodb to v5 mongos --configdb 127.0.0.1:27017 --upgrade with no error, I have clicked on reindex the database. when I search I get the following stuff in the cli MongoError: Unable to execute query: error processing query: ns=0.search limit=50 skip=0 Tree: $and key == "topic" TEXT : query=cool, language=, tag=NULL Sort: {} Proj: {} planner returned error: need exactly one text index for $text query at Object.toError (/nodebb/node_modules/mongodb/lib/mongodb/utils.js:114:11) at /nodebb/node_modules/mongodb/lib/mongodb/cursor.js:700:54 at Cursor.close (/nodebb/node_modules/mongodb/lib/mongodb/cursor.js:983:5) at commandHandler (/nodebb/node_modules/mongodb/lib/mongodb/cursor.js:700:21) at /nodebb/node_modules/mongodb/lib/mongodb/db.js:1847:9 at Server.Base._callHandler (/nodebb/node_modules/mongodb/lib/mongodb/connection/base.js:445:41) at /nodebb/node_modules/mongodb/lib/mongodb/connection/server.js:478:18 at MongoReply.parseBody (/nodebb/node_modules/mongodb/lib/mongodb/responses/mongo_reply.js:68:5) at null.<anonymous> (/nodebb/node_modules/mongodb/lib/mongodb/connection/server.js:436:20) at EventEmitter.emit (events.js:95:17)
  • login error

    General Discussion
    2
    0 Votes
    2 Posts
    2k Views
    Peter-Zoltan KeresztesP
    apparently this error is caused by the cookies which are saved in the browser. Ones I cleared the cache and cookies I was able to login with no issue.
  • JS use in homepage

    General Discussion
    11
    0 Votes
    11 Posts
    5k Views
    B
    @kimmanuel what I meant that it's too fast for the user to see it. just use the Custom JS and try it out. It'll work, i already edit the menu items here: http://forums.afraidtoask.com/ Right click and view-source (or if you're in chrome click here) and you'll see the Custom JS script tag that reverses the menu items, hides the icons, shows the text instead and it adds a new item called "Home" <script> $(function() { var ul = $("ul#main-nav"); var items = ul.find("li"); items.each(function(i, li){ li = $(li); li.find("a>i").addClass("hide"); li.find("a span").removeClass("visible-xs-inline"); }); ul .append(items.get().reverse()) .prepend('<li><a href="http://www.afraidtoask.com" title="" target="_top" data-original-title="Home"><i class="fa fa-fw fa-home hide"></i><span class=""> Home</span></a></li>'); }); </script>
  • Delete Post

    General Discussion
    3
    0 Votes
    3 Posts
    3k Views
    frissdiegurkeF
    You know that if you edit a file of NodeBB itself it may refuse to update by git pull because a merge would be needed? So it may be that you're working with an old version of NodeBB o_O Anyways... If you are able to delete a post you have the permission to also restore it. Because of this the post doesn't get removed but only gets less opacity (within the official themes). I just don't know in which case the post could be removed from DOM after reload, may be an inofficial theme or an old version of NodeBB (maybe because of the reason above).
  • Unread Count

    General Discussion
    2
    0 Votes
    2 Posts
    2k Views
    julianJ
    This code: https://github.com/NodeBB/NodeBB/blob/a9ca035e1e3d54fc457569196116871bfc8c3ba5/src/topics/unread.js#L118-L145
  • 0 Votes
    5 Posts
    5k Views
    A
    @psychobunny good point.
  • 3 Votes
    4 Posts
    2k Views
    KayimiK
    Such catchy music. :D!
  • 7 Votes
    22 Posts
    21k Views
    A
    Here sir, take my vote.
  • Can't Register or Login In

    General Discussion
    14
    0 Votes
    14 Posts
    8k Views
    julianJ
    Glad I could help
  • Header Icon

    General Discussion
    3
    0 Votes
    3 Posts
    2k Views
    julianJ
    [image: dnlaPqo.png]