Hi @Cadej,
Thanks for your feedback and for trying on SuiteCRM 8 RC.
Could you try the following:
Create a file at public/legacy/custom/Extension/application/Ext/ModuleNameMap/my_module.php
with the following contents please?
- Replace
MyModule
by the name of your module, should be the “machine name” something likeABC_MyModule
or similar. - Run a repair and rebuild
<?php
$module_name_map = $module_name_map ?? [];
$module_name_map['MyModule'] = [
'frontend' => 'my-module',
'core' => 'MyModule'
];
I’ve raised this internally, I think this is something we should look at.