I need to be able to call up a custom field - "field12" in the "forumhome_lastpostby" template.
I've tried numerous plugins and hooks (including forumbit_display) but still can't get the information to display in the "lastpostby" section.
I was able to get it to work fine on forumdisplay using using hook "forumdisplay_query" and this plugin code:
Code:
$hook_query_fields .= ', userfield.field12 ';
$hook_query_joins .= ' LEFT JOIN ' . 'userfield AS userfield ON (userfield.userid = thread.postuserid) ';