A very helpful article thank you, just not quite enough help for non coders like me.
I successfully created new tab and with the following code I now get output of "field 12" showing but not "field 11" instead of both showing, am also having difficulty inserting the field title in the output. A little help maybe.
Code:
$blocklist = array_merge($blocklist, array(
'checklist' => array(
'class' => 'checklist',
'title' => 'Checklist (Work in Progress)',
'hook_location' => 'profile_left_last'
)
));
class vB_ProfileBlock_checklist extends vB_ProfileBlock
{
var $template_name = 'memberinfo_block_checklist';
function confirm_empty_wrap()
{
return false;
}
function confirm_display()
{
return ($this->block_data['checklist'] != '');
}
function prepare_output($id = '', $options = array())
{
$this->block_data['checklist'] = $this->profile->userinfo['field11'];
$this->block_data['checklist'] = $this->profile->userinfo['field12'];
}
}
--------------- Added [DATE]1207495466[/DATE] at [TIME]1207495466[/TIME] ---------------
I would really appreciate a little help with this as its so close to working fully -

Bump