Hello!

Update broke something in templates. My old templates like entity--special-offer--special-offer--block.tpl.php don't work anymore.

Just started to debug in hook_preprocess_entity - i still can see in theme suggestions "entity__special_offer__special_offer__block", but none of them work.

What to do? Thx.

Comments

profak’s picture

Status: Active » Closed (works as designed)

Sorry, just didn't get that in this release was fixed template naming bug.
In previous i had to add this code:

foreach($variables['theme_hook_suggestions'] as &$suggestion) {
      $suggestion = 'entity__' . $suggestion;
}

To make templates visible. I hope this will help someone using old workaround.