Skip to content

What plugins are being used here on Sudonix?

Solved General
  • I’ve recently started looking into NodeBB as an option for a new forum that I want to start and I have to say that Sudonix is the best implementation I have come across so far.

    Would you mind sharing a list of all the plugins that you are using?

  • @Norrad Thanks for the kind words. Here’s the list of plugins that Sudonix uses.

            * @nodebb/nodebb-plugin-beep@1.1.2 (installed, enabled)
            * @nodebb/nodebb-plugin-reactions@2.2.1 (installed, enabled)
            * @nodebb/nodebb-plugin-reputation-rules@2.0.0 (installed, enabled)
            * @nodebb/nodebb-plugin-user-level@2.1.2 (installed, enabled)
            * @nodebb/nodebb-widget-board-stats@2.0.8 (installed, enabled)
            * nodebb-plugin-2factor@7.4.0 (installed, enabled)
            * nodebb-plugin-browsing-users@4.0.1 (installed, enabled)
            * nodebb-plugin-cards@0.4.0 (installed, enabled)
            * nodebb-plugin-composer-default@10.2.33 (installed, enabled)
            * nodebb-plugin-contact-page@1.3.0 (installed, enabled)
            * nodebb-plugin-custom-pages@2.1.0 (installed, enabled)
            * nodebb-plugin-customize@4.0.1 (installed, enabled)
            * nodebb-plugin-dbsearch@6.2.3 (installed, enabled)
            * nodebb-plugin-emoji@5.1.13 (installed, enabled)
            * nodebb-plugin-emoji-android@4.0.0 (installed, enabled)
            * nodebb-plugin-extended-markdown@2.0.1 (installed, enabled)
            * nodebb-plugin-gdpr@2.0.0 (installed, enabled)
            * nodebb-plugin-glossary@1.1.0 (installed, enabled)
            * nodebb-plugin-gravatar@4.0.0 (installed, enabled)
            * nodebb-plugin-markdown@12.2.6 (installed, enabled)
            * nodebb-plugin-mentions@4.4.0 (installed, enabled)
            * nodebb-plugin-ns-embed@6.0.0 (installed, enabled)
            * nodebb-plugin-ntfy@1.7.3 (installed, enabled)
            * nodebb-plugin-poll@3.1.2 (installed, enabled)
            * nodebb-plugin-question-and-answer@1.2.7 (installed, enabled)
            * nodebb-plugin-recent-cards@3.3.0 (installed, enabled)
            * nodebb-plugin-registration-notification@3.0.0 (installed, enabled)
            * nodebb-plugin-soundpack-default@3.0.0 (installed, enabled)
            * nodebb-plugin-spam-be-gone@2.2.1 (installed, enabled)
            * nodebb-plugin-sso-google@3.1.0 (installed, enabled)
            * nodebb-plugin-sso-twitter@3.1.0 (installed, enabled)
            * nodebb-plugin-tenor-gif@3.1.6 (installed, enabled)
            * nodebb-plugin-total-vote-count@1.4.0 (installed, enabled)
            * nodebb-rewards-essentials@1.0.0 (installed, enabled)
            * nodebb-theme-harmony@1.2.44 (installed, enabled)
            * nodebb-widget-essentials@7.0.15 (installed, enabled)
    
  • @phenomlab Thanks a million for the list. I’m going to install them on a test nodeBB install and play around with them.

  • @Norrad Are you looking for anything in particular? I only ask because Sudonix uses a number of custom functions which I wrote, but all are available on GitHub and fully supported here.


Did this solution help you?
Did you find the suggested solution useful? Why not buy me a coffee? It's a nice gesture, and a great way to show your appreciation 💗

  • SEO and Nodebb

    Performance
    2
    2 Votes
    2 Posts
    143 Views

    @Panda It’s the best it’s ever been to be honest. I’ve used a myriad of systems in the past - most notably, WordPress, and then Flarum (which for SEO, was absolutely dire - they never even had SEO out of the box, and relied on a third party extension to do it), and NodeBB easily fares the best - see below example

    https://www.google.com/search?q=site%3Asudonix.org&oq=site%3Asudonix.org&aqs=chrome..69i57j69i60j69i58j69i60l2.9039j0j3&sourceid=chrome&ie=UTF-8#ip=1

    However, this was not without significant effort on my part once I’d migrated from COM to ORG - see below posts

    https://community.nodebb.org/topic/17286/google-crawl-error-after-site-migration/17?_=1688461250365

    And also

    https://support.google.com/webmasters/thread/221027803?hl=en&msgid=221464164

    It was painful to say the least - as it turns out, there was an issue in NodeBB core that prevented spiders from getting to content, which as far as I understand, is now fixed. SEO in itself is a dark art - a black box that nobody really fully understands, and it’s essentially going to boil down to one thing - “content”.

    Google’s algorithm for indexing has also changed dramatically over the years. They only now crawl content that has value, so if it believes that your site has nothing to offer, it will simply skip it.

  • 1 Votes
    4 Posts
    165 Views

    @Vijay-Kumavat-0 I think you’d be better off customising the plugin above to be honest. It seems like you’d be reinventing the wheel otherwise.

    I’d modify

    /nodebb/node_modules/nodebb-rewards-essentials/lib/conditions.js
    /nodebb/node_modules/nodebb-rewards-essentials/lib/rewards.js

    These seem to be the two files that control what is in the dropdown lists.

  • Composer options on nodebb

    Solved Configure
    8
    3 Votes
    8 Posts
    289 Views

    @Panda You should be able to expose the CSS for these using F12 to get into console

    3591518c-e3a3-4ada-a43c-6b32a5e0359c-image.png

    a2b8ed46-4157-4ff2-85f0-576543380107-image.png

    That should then expose the element once selected

    89d9c545-a47a-40d1-98f4-80cf3b958e8f-image.png

    Here’s the below CSS you need based on the screenshot provided.

    .composer .formatting-bar .formatting-group li[data-format="picture-o"], .composer .formatting-bar .formatting-group li[data-format="spoiler"] { display: none; }
  • 2 Votes
    6 Posts
    250 Views

    @dave1904 I’d start by adding a console.log function to hookData so you can see what is being returned

    return hookData; console.log(hookData):
  • NodeBB v3

    Announcements
    2
    3 Votes
    2 Posts
    174 Views

    @cagatay JS will work fine - no changes there, and there are no plans to drop support for jQuery. More of an issue is the CSS - for which there are quite a few breaking changes. Keep an eye on sudonix.dev (my development site) where you can see progress in relation to how I am tackling the compatibility issues.

  • 5 Votes
    3 Posts
    375 Views

    @phenomlab

    I love it too

    @phenomlab said in Blinking text Effect:

    Has that “broken neon light” look that you see in films.

    It’s exactly that, kind of old neon signs of bar or pubs a bit cyberpunk too 😉

  • 7 Votes
    10 Posts
    543 Views

    @phenomlab Thanks 🙏

  • 3 Votes
    9 Posts
    431 Views

    @Sala Yes, I personally use Edge. Hated Internet Exploder (misspell intentional) but seeing as Edge is Chromium and Webkit backed, it works for me.