Headline not displayed for legacy 3rd party plugins
Available Files
No files uploaded.
Related discussions
Forums Integration Are there a great many benefits to kunena over the jomsocial groups discussion functionality (i.e. this)? I am debating which way to go myself. This...
Just found that with third party plugins that do not yet implement API v2 onCommunityStreamRender method, the headline is not displayed on front end.
Tracked this down to an incorrectly escaped REGEX in ./components/com_community/templates/default/activities.index.php
At approximately line 138 replace this...
$title = preg_replace('/{multiple}(.*){/multiple}/i', '', $title);
with this...
$title = preg_replace('/\{multiple\}(.*)\{\/multiple\}/i', '', $title);
Jomsocial Version 3.0.1
/DM