weitling Posted September 6, 2014 Share Posted September 6, 2014 Hello I get this message in my frontpage "No template found for module leomanagewidgets" I cant find how to correct it, any good advice? Link to comment Share on other sites More sharing options...
apositivo Posted September 10, 2015 Share Posted September 10, 2015 Solution ! in the file classes/module/Module.php Find public function display($file, $template, $cacheId = null, $compileId = null) { if (($overloaded = Module::_isTemplateOverloadedStatic(basename($file, '.php'), $template)) === null) return Tools::displayError('No template found for module').' '.basename($file, '.php');... replace with public function display($file, $template, $cacheId = null, $compileId = null) { if (($overloaded = Module::_isTemplateOverloadedStatic(basename($file, '.php'), $template)) === null) //return Tools::displayError('No template found for module').' '.basename($file, '.php'); return ""; Link to comment Share on other sites More sharing options...
gabdara Posted September 10, 2015 Share Posted September 10, 2015 That Tools::displayError is there for a reason, ignoring it doesn't mean that the issue isn't still there. Search the folder leomanagewidgets and where you find it make sure it has the right owner:group and also the right permissions (for test purpose you can try 777). If you can't find the problem contact de developer of the module. Link to comment Share on other sites More sharing options...
Recommended Posts