In ijoomlacomments admin settings, under Mambot Content Function, define your own event name such as IJoomlaComments
Then edit the core file components/com_content/content.html.php
Look up for function show()
Paste this line anywhere within the function where you want to trigger iJoomlaComment
Code:
$results = $_MAMBOTS->trigger( 'IJoomlaComments', array( &$row, &$params, $page ), true ); echo trim( implode( "\n", $results ) );
Take note that IJoomlaComments is the name you register in the admin
I did all this, and its not showing.
Also changing it to 'onAfterDisplayContent' does not show. (which by the looks of it, would be fine for switching 'read more' and the joomla-comment-output).
i placed it right underneath
$results = $_MAMBOTS->trigger( 'onAfterDisplayContent', array( &$row, &$params, $page ) );
echo trim( implode( "\n", $results ) );
just to make sure it is in a place where the mambots have been loaded.