My aplologies - you're correct. That was for another add-on I tried that didn't work properly for me.
If I recall correctly, I had to fiddle with this a bit to get it to work.
Make sure that your Carp Configuration plugin looks like this:
Code:
require_once '/full/server/path/to/forum/carp/carp.php';
CarpConf('cacheinterval',120);
CarpConf('cborder','');
CarpConf('poweredby','');
CarpConf('maxitems',1);
CarpConf('iorder','link');
CarpConf('linktarget',1);
And that your Get Users Blog Entry plugin looks like this:
Code:
ob_start();
CarpCacheShow($post[field6]);
$blogentry = ob_get_contents();
ob_end_clean();
Then double check that the correct field is identified in the edits to your postbit:
Code:
<if condition="$post['field6']">
<div class="smallfont">Recent Blog: $blogentry</div>
</if>
In the supplied example, it is field5. For my forum it was field6. It may be different for you forum.