Custom Digest Time Without Changing Core

Unsolved NodeBB Development

Suggested Topics


  • 0 Votes
    5 Posts
    620 Views

    @dogs this worked a treat - thanks. For anyone else who might be looking for something similar, here's a simple scroll to top function that you can place into your Custom JS

    // Scroll to top button $(window).on('action:ajaxify.end', function(data) { var btn = $('#btt'); $(window).scroll(function() { if ($(window).scrollTop() > 300) { btn.addClass('show'); } else { btn.removeClass('show'); } }); btn.on('click', function(e) { e.preventDefault(); $('html, body').animate({scrollTop:0}, '300'); }); })

    Then place this into your Custom Header

    <a id="btt"><i class="fas fa-chevron-up"></i></a>

    Obviously, you would need to provide some CSS to style this. An example of this can be found on https://phenomlab.com

  • 0 Votes
    6 Posts
    3k Views

    @alberto__segura said in Chat REST API endpoint changes:

    Also, I don't like the admins could directly read other users conversations

    It was removed and code moved to a plugin. So, admins can read other users conversations if the plugin is installed.

  • 0 Votes
    2 Posts
    2k Views

    Never finished it. (Did I publish it on npm? Oops?)

    Since then there has been a few gamification plugins built, for example by @nicolas

  • 1 Votes
    3 Posts
    3k Views

    Is it even possible to integrate a plug in that posts to a 'group'

    I'm sure FB only allows posting to fan pages and walls.

    That being said, I know you can do 'Canvas' app for NodeBB on FB, but this only integrates with FB notifiactions
    On the Browser, where as you'll find most of the time they check FB via mobile. And FB mobile is not compatible with
    Canvas or any external FB notifications.

    So you are probably going to be disappointed with it's results.

    Also, on that note. I've found it susccefull for mobile users, using a push notification app. That notifies users on events.
    And when they are notified, it refers them back to your forum. via a webui Browser in the app.
    This works great with a Responsive design or a dedicated mobile browser.

  • 0 Votes
    27 Posts
    9k Views

    @Alex said:

    I will edit the plugins locally then until the plugins's authors put the modification. Thank you @julian for this quick fix. @a_5mith could you let us know when you have pushed it to npm or github please? 😉

    Yeah sure.