What plugin does this with links

NodeBB Plugins

Suggested Topics


  • I did not find plugin

    NodeBB Plugins
  • 0 Votes
    1 Posts
    221 Views

    hi is the nodebb-plugin-google-search2 is this plugin still working in 2019 ? for NodeBB v1.4.3 , NodeBB v1.12.0
    what does this do really?

    Description
    This plugin redirect search queries to Google, which used by V2MM, you can see what happened when you search on V2MM. can you show use some examples ? thanks

    Credit
    This plugin was modified from BenLubar's nodebb-plugin-google-search, only fixed one problem: BenLubar's original plugin blocked the hook "filter:search.query" with a dummy function, which leads the suggested topics widget not work, because that widget would call this api when it's on the topic's template.

  • 0 Votes
    1 Posts
    714 Views

    after installing and activating from plugin section "nodebb-plugin-session-sharing" , i am always getiing locked out of my acp by 503 error. then i have to use" ./nodebb reset -p nodebb-plugin-session-sharing to restart".
    how to proceed?

  • 0 Votes
    2 Posts
    1k Views

    FYI, this older version is generation the following message in the NodeBB log:
    14/4 08:03:46 [30678] - warn: [plugins/load] The following plugins may not be compatible with your version of NodeBB. This may cause unintended behaviour or crashing. In the event of an unresponsive NodeBB caused by this plugin, run ./nodebb reset -p PLUGINNAME to disable it.

    nodebb-plugin-blog-comments
  • 0 Votes
    2 Posts
    1k Views

    This is because the form element doesn't exist when you initially load the page.

    Use the event selector on the body element to grab the form dynamically.

    $('body').on('input', '#email', function() { console.log("IN"); $.ajax({ url:'....', data: { 'email_input': $(this).val() }, success: function(data) { } }); });