I can't install add-ons

NodeBB Plugins

Suggested Topics


  • 1 Votes
    1 Posts
    285 Views

    Example verify.PNG

    Any plugin?

    Also, Can we we use emoji on topic title?

  • 0 Votes
    2 Posts
    1k Views

    How did you "install" the plugin? npm install will install dependencies, a simple git clone will not. You will need to run npm install inside the plugin folder.

  • 17 Votes
    34 Posts
    8k Views

    @q16marvin use [email protected], The latest version 3.1.0 is meant for nodebb 3.2.0 which isn't released yet.

  • 0 Votes
    1 Posts
    803 Views

    I need add option in this button
    0_1497292152415_Screen Shot 2017-06-12 at 2.56.53 PM.png

    I found this code for add that but in the composer when adding a post.

    $(window).on('action:composer.loaded', function(err, data) { if (data.hasOwnProperty('composerData') && !data.composerData.isMain) { // Do nothing, as this is a reply, not a new post return; } var item_reply = $('<button type="button" class="btn btn-info dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button><ul class="dropdown-menu pull-right" role="menu"><li><a href="#" data-switch-action="post"><i class="fa fa-fw fa-book"></i> Responder historia</a></li></ul>'); var actionBar = $('#cmp-uuid-' + data.post_uuid + ' .action-bar'); item_reply.on('click', 'li', function() { $(window).off('action:composer.topics.post').one('action:composer.topics.post', function(ev, data) { callToggleQuestion(data.data.tid, false); }); }); actionBar.append(item_reply); });

    Maybe this working if changue .action-bar for ?, really, the documentation for plugin development is very bad

    Thanks for you time, and sorry for my bad english

  • 0 Votes
    8 Posts
    3k Views

    @Danny-McWilliams
    I have no clue why this happens. I guess we have to wait for a fix 😉