now i checked something else as well...
lets say my code in modules.php is:
function modChrome_cart($module, &$params, &$attribs)
{
if ($module->title)
{
echo $module->title;
}
else
{
echo 'NOTITLE!';
}
if ($module->content)
{
echo $module->content;
}
}
and in index.php i use
<jdoc:include type="modules" name="warenkorb" style="cart" />
then all works! the title is displayed!!!
but when i work this way (as i do in all projects) it does not work:
i choose the module style over module config: advanced > module style > cart
and in my index.php i write as always (no style defined here!)
<jdoc:include type="modules" name="warenkorb" style="" />
for all other modules (custom and other vendors) this is working, and always has, except for hikashop!
is this a bug in hikashop or is this the wrong way of doing this?
whats the point of having in the backend the option to pick a module style if i HAVE to add it also to my style-attribute in index.php ??? you work either the one or the other way (i thought)...