I assume that you want plugins processed for just the term definition.
In glossary.php, look for the showOneTerm function. On line 294, you'll see this line:
Code:
if ($row1) {
Right after that line, add these lines of code:
Code:
global $_MAMBOTS;
$_MAMBOTS->loadBotGroup( 'content' );
$tmp_row = new stdClass();
$tmp_params = new mosParameters('');
$tmp_row->text = $row1->tdefinition;
$_MAMBOTS->trigger( 'onPrepareContent', array( &$tmp_row, &$tmp_params ), true );
$row1->tdefinition = $tmp_row->text;
I tried this with the mosloadposition plugin - it worked fine. It should work for whatever plugin you have in mind. Good luck.
Greg