Hi I am using T3 Blank for Joomla 4 on this page (https://www.joomlart.com/member/downloads/joomlart/t3-framework/t3-blank). I have joomla tabs module that is working on Joomla 4 default template Cassiopeia. Tabs module loads joomla modules as tabs. But when activated module on T3 BS3 Blank template I have this error message :
0 - count(): 0 - Attempt to assign property "content" on string
...mysite\plugins\system\t3\includes\joomla4\ModuleHelper.php:241
2 Joomla\CMS\Helper\ModuleHelper::renderRawModule() JROOT\plugins\system\t3\includes\joomla4\ModuleHelper.php:65
3 Joomla\CMS\Helper\ModuleHelper::renderModule() JROOT\libraries\src\Document\Renderer\Html\ModuleRenderer.php:102
The line 241 on ModuleHelper.php is like this
$module->content = obgetcontents() . $content;
The tabs module I want to use has this render code to display modules in tabs module
jimport('joomla.application.module.helper');
foreach ($item->id as $module){
$modules = ModuleHelper::getModuleById($module);
echo ModuleHelper::renderModule($modules);
It seems that there is a conflict with t3 plugin and renderin joomla modules. Any help appreciated. Thanks