Skip to content
  • 0 Votes
    1 Posts
    46 Views
    D

    I recently attempted to install the plugin named nodebb-plugin-cobi-translate-posts, which was advertised as providing automatic translation of post content using ChatGPT 3.5. However, I didn't receive any instructions on how to configure it for this purpose. Has anyone successfully set up this plugin for auto-translation, and if so, could you please share the correct setup steps?

    After installed the plug in, I have the translate button in my forum, however, it does nothing after click on it.

    And Persona is my current theme.

    Thank you for any assistance or guidance you can provide!

  • 0 Votes
    1 Posts
    93 Views
    R

    As title, But its work on dev mode. how could I solve the problem.

  • 0 Votes
    1 Posts
    108 Views
    Shantur RathoreS

    Hi,

    I am thinking of setting up NodeBB and Ghost and connect them with the plugin for comments.
    At the same time, I want to be able to publish some a tutorial / guide written in one of the NodeBB Topic as an article for Ghost.

    Is this something done by any plugin?

    Thanks

  • Broadcast message plugin

    NodeBB Plugins
    1
    0 Votes
    1 Posts
    205 Views
    A

    Hi, Is there a plugin to broadcast a message to many users?

  • 3 Votes
    1 Posts
    219 Views
    barisB

    Link Preview Image GitHub - NodeBB/nodebb-plugin-debug-hook: A plugin to see parameters passed to hooks in real time

    A plugin to see parameters passed to hooks in real time - NodeBB/nodebb-plugin-debug-hook

    favicon

    GitHub (github.com)

    Sometimes you need to see the result of some filter/action on a live/prod instance and it is not easy to add a console.log and restart.

    This plugin allows you to select a plugin hook and see the resulting data after all plugins are done executing their hooks.

    Here is a sample from running it against filter:search.query

    d0347032-02ff-4dcc-83a8-8bc039b4b297-image.png

    The output is updated automatically every time you trigger the hook.

  • Upload API

    NodeBB Plugins
    1
    0 Votes
    1 Posts
    181 Views
    A

    Hi,
    How can i see the /api/post/upload interface?

    Thanks

  • Debugging in V2

    NodeBB Plugins
    1
    0 Votes
    1 Posts
    174 Views
    E

    Hello Nodebb community,

    I am upgrading to V2 and one of the very first issues I am facing now is debugging of webpacked project. Is there an instruction for noob like me on how to set up my dev environment in more organized manner either in VS Code or Chrome devTools?

    I used to add my plugin folders as a workspace in Chrome devTools and automatic binding would allow me to debug the source files:
    old.PNG

    Sadly I am unable to do the same in V2 due to webpack source mapping not playing nice with Chrome. All I have came up with so far is enabling source-mapping by adding the following to webpack.xxx.js:

    devtool: 'source-map'

    This allows me to open inspection view of the source-mapped Nodebb project in Chrome devTools and view the scripts-client.js for debugging.
    new.PNG

    It is not as intuitive and simple as before so I am seeking you assistance.

    Thank you all in advance for your guidance.

  • 0 Votes
    1 Posts
    183 Views
    oci-userO

    Re: Question and Answer Plugin - Permissions

    I get no answer but today I discovered that should be possibile what I'm asking just how?

    I discovered on the Vivaldi forum user cannot set a question as answered.
    How I can do the same?

    I have installed the nodebb-plugin-question-and-answer and I want allow only moderator to set answers.

    How to do this? I need install a different plugin?
    I don't know what plugin use Vivaldi forum, looks same but with different graphics and seems allow they to allow only mod to select a best answer.

    Thanks, hope to get a reply this time 🙂

  • 1 Votes
    1 Posts
    188 Views
    R

    I'm using nodebb-plugin-ns-custom-fields plugin. but it seems not working.I wasn't found the setting page in my acp panel. Does anyone know how to fix this problem or some alternative plugins to add custom fields in user's profile

  • iframe integration

    NodeBB Plugins
    1
    1 Votes
    1 Posts
    241 Views
    R

    I'm trying to get bi-directional integration working for nodebb running in an iFrame. One of the last pieces left is ensuring that the post index is captured in the browser session stack. I can get the navigation events captured by listening for 'action:ajaxify.end' and using that to postMessage back to the parent so it can then be used for a pushState. I would also like to capture the post index changes as a user scrolls through the posts so it can be reflected in the parent url. Is there an event I can attach to, so these index changes can be captured?

  • 0 Votes
    1 Posts
    211 Views
    oci-userO

    Hi,
    there is a way to allow mark a topic as question or not, solved or not only to mods / admins?

    Will be useful have more controls on the permission.
    I opened a GitHub issue for this but try to see here if can be some solution to avoid user remove or set resolved status.

  • Remove plugin from nbbpm

    Solved NodeBB Plugins
    1
    0 Votes
    1 Posts
    248 Views
    Y

    Hi, I have package/plugin in nbbpm

    nodebb-plugin-change-reputation-test

    how to remove it?
    (I already removed it from npm)
    Thanks

    Thanks @administrators for the removed 👍

  • 0 Votes
    1 Posts
    271 Views
    kaiK

    Hi All,
    I'm a newbie in nodebb. I'm not understand the layout logic nodebb in nodebb.
    Actually I have a two feature need to change the template.

    I would like to update active user widget: I need to add username under the avator box. I would like to update the perrmission from nodebb-plugin-calendar: only admin can see the event response.

    I found the template in the plugins folder and change the template tpl code. And also re-build the nodebb. However the layout a still not updated. May I know what is the correct method to make a small changes in nodebb and how to update the template layout ?

    Thanks so much.

    Nodebb version : 1.17.0

  • 0 Votes
    1 Posts
    284 Views
    AnOdeToBBA

    I'm hoping to pull In some YouTube videos that will embed into the post, so pull in the YouTube category feed automatically.

    Currently getting a 'Status 404 error' when inputting the feed URL, any ideas?

    I have posted this is the actual plugin thread but without any response so far. Has anyone managed to pull in and embed YouTube videos direct into the posts?

    Thanks 👍

  • 1 Votes
    1 Posts
    284 Views
    yellowed manuferY

    with credit system,

    smile

  • 0 Votes
    1 Posts
    240 Views
    Aritra SinhaA

    Re: [nodebb-plugin-session-sharing] Session Sharing

    I am trying to use this plugin to connect the authentication process of my Rails Application and NodeBB (both of them are running locally on different ports)

    jwt_secret = "myS3cr3tk3y" payload = { :id => current_user.id, :username => current_user.username } puts payload token = JWT.encode payload, jwt_secret, 'HS256' puts token decoded_token = JWT.decode token, jwt_secret, true, { algorithm: 'HS256' } puts decoded_token session[:nodebb_token] = { value: token, HttpOnly:true }

    This is the code for writing the cookies.

    Screenshot from 2021-03-13 22-48-11.png
    This is the configuration for the plugin.
    Is something wrong with my code or the configuration?? Can someone help me find out the issue?? @julian

  • 0 Votes
    1 Posts
    287 Views
    N

    We successfully integrated wordpress with nodebb, every thing works great.Here is my site "https://www,happyusclub.com". But during login from the nodebb site , the referrer link in the header is showing as "https://forum.happyusclub.com" without any permalinks.
    Basically we are trying to redirect users to the referrer page after login.(similar to nodebb community after login the users redirecting to the page where they come from). But in my site when the user clicks login it goes to wordpress sso as expected but with referrer link as forum homePage without any permalink. Can anyone share your thoughts on how to approach this problem.