Daniel Dimitrov wrote:You will have to play with your template for the frontpage. Open your template and go to the html folder and find the frontpage template. There you cna search for onAfterdisplayContent - place it where you want it to be. Then it should work.
Do you mean site template, content templates or JoComment template? I've searched all of these and I found it in com_content folder in all views (article, category and frontpage) but it's at the end of the file and idk what to do with it. It looks like that
}
$item->event = new stdClass();
$results = $dispatcher->trigger('onAfterDisplayTitle', array (& $item, & $item->params,0));
$item->event->afterDisplayTitle = trim(implode("n", $results));
$results = $dispatcher->trigger('onBeforeDisplayContent', array (& $item, & $item->params, 0));
$item->event->beforeDisplayContent = trim(implode("n", $results));
$results = $dispatcher->trigger('onAfterDisplayContent', array (& $item, & $item->params, 0));
$item->event->afterDisplayContent = trim(implode("n", $results));
return $item;
}
After that code there is one "}" and the file ends. There is nothing about article separator above it.