Plugin created and activated. However, it doesn't show on admin panel.
-
Hey all, I am trying to create a plugin to list popular categories that I was querying about here
I went through documentation and packed by replicating the folder structure of that quick plugin mentioned in doc. I was able to install with npm and activate via plugin dashboard in ACP. However after activating and building it, it doesn't show up in the panel under plugin in the admin sidebar.What am I doing wrong? Has there been some changes recently or is there another way to develop by following any other plugin structure?
Thank you.
-
Try navigating to the route created by the plugin for the admin page, it should be something like
/admin/plugins/pluginname
. If that is giving a 404 that means your plugin isn't being loaded properly on startup. Check nodebb logs for any errors / warnings.The quick start plugin creates a route at
/admin/plugins/quickstart
https://github.com/NodeBB/nodebb-plugin-quickstart/blob/master/library.js#L37