Not sure if this is a bug so to speak or custom mod.
If you edit a blog then the news feed is updated accordingly. The title changes, and so does the intro text.
However, with a video if you edit the video or title the news feed isn't updated.
I have looked at the .php files and I've tried to add
// Newsfeed
$event = new OW_Event('feed.action', array(
'pluginKey' => 'video',
'entityType' => 'video_comments',
'entityId' => $clip->id,
'userId' => $clip->userId
));
OW::getEventManager()->trigger($event);
To the file ow_plugins > video > controllers > video.php - Under:
if ( $clipService->updateClip($clip) )
{
BOL_TagService::getInstance()->updateEntityTags($clip->id,'video',
TagsField::getTags($values['tags']));
This code is present in the add.php file but doesn't work when an update happens.
Any ideas why I can't get this to work?