Hi Mark.
Weird. I enabled Komento plugin and get this error:
"<br />↵<b>Notice</b>: Undefined index: core in <b>/home/yoorecipe/sd/demo/www/administrator/components/com_easysocial/includes/stream/template.php</b> on line <b>484</b><br />↵<br />↵<b>Notice</b>: Trying to get property of non-object in <b>/home/yoorecipe/sd/demo/www/administrator/components/com_easysocial/includes/stream/template.php</b> on line <b>528</b><br />↵<br />↵<b>Notice</b>: Trying to get property of non-object in <b>/home/yoorecipe/sd/demo/www/administrator/components/com_easysocial/includes/stream/template.php</b> on line <b>529</b><br />↵{"status":true}"
komento plugin code:
<code>/**
* onReviewCreate
*/
public function onReviewCreate($context, &$recipe, &$review) {
$stream = Foundry::stream();
$template = $stream->getTemplate();
$my = Foundry::user();
$author_link = '<a href="'.JRoute::_('index.php?option=com_easysocial&view=profile&id='.$my->id.':'.$my->getName()).'">'.$my->getName().'</a>';
$recipe_link = '<a href="'.JRoute::_(JHtmlYooRecipeHelperRoute::getRecipeRoute($recipe->id.':'.$recipe->alias)).'">'.$recipe->title.'</a>';
$template->setActor($my->id ,'user');
$template->setContext($review->id, 'reviews.create');
$template->setVerb('create');
$template->setTitle(JText::sprintf('PLG_YOORECIPE_KOMENTO_USER_CREATED_REVIEW', $author_link, $recipe_link));
$template->setDate( JFactory::getDate()->toSql());
$stream->add($template);
Komento::commentify( 'com_yoorecipe', $review, array( 'params' => '') );
}</code>