diff --git a/src/meta/templates.js b/src/meta/templates.js index 3ca3d147e4..c80b844c64 100644 --- a/src/meta/templates.js +++ b/src/meta/templates.js @@ -47,6 +47,10 @@ Templates.processImports = processImports; function getTemplateDirs(activePlugins, callback) { var pluginTemplates = activePlugins.map(function (id) { + if (id.startsWith('nodebb-theme-')) { + return nconf.get('theme_templates_path'); + } + return path.join(__dirname, '../../node_modules/', id, plugins.pluginsData[id].templates || 'templates'); });