07/28/2016 at 3:06 pm
#384609
Keymaster
@ dominic
The issue is that the label attribute doesn’t support HTML tags even though it worked on prior versions. It is just now properly escaped whereas it was not before. If you want to make the label bold with space after it, you should use CSS. You can use the .cn_category_label CSS selector.
The same for the separator.
If you want a list, try this instead:
$entry->getCategoryBlock(
array(
'label' => 'Skills:',
'type' => 'list',
)
);
That should get you back on track. Hope that helps, let me know.
