admin wrote:
$joomla_out = ob_get_contents();
ob_clean();
mosLoadModules ('position', 2);
$modules_out = ob_get_contents();
ob_clean();
echo $joomla_out;
$row->text .= $modules_out;
QUOTE:
Sure..
In your code, check if you are on an article page. To do this you test for the URL parameters "option" and "task". The parameter "option" should be set to "com_content" and "task" should be "view".
eg:
if (mosGetParam($_REQUEST, 'option') == 'com_content' && mosGetParam($_REQUEST, 'task') == 'view') {
// put your code in here..
}
Hello again!!! how i can do the same but for joomla 1.5 ????
thankyou!!!!