Ok, can someone help me just a bit more. Probably just an easy fix.
Now I added the last code posted to my plugin and it worked. It displayed the data from my custom profile field 18. In my above thread I said it was userfield24 but I had it wrong, it's userfield18. Now here's my plugin code:
Code:
$blocklist = array_merge($blocklist, array(
'mymodification' => array(
'class' => 'MyModification',
'title' => 'My Modification',
'hook_location' => 'profile_left_last'
)
));
class vB_ProfileBlock_MyModification extends vB_ProfileBlock
{
var $template_name = 'memberinfo_block_mymodification';
function confirm_empty_wrap()
{
return false;
}
function confirm_display()
{
return ($this->block_data['mymodification'] != '');
}
function prepare_output($id = '', $options = array())
{
$this->block_data['mymodification'] = $this->profile->userinfo['field18'] ? "Stuff: ".$this->profile->userinfo['field18'] : "Nothing to see here";
}
}
Like I said works fine with one small problem. Now the data I have stored in userfield18 is a list of information, like:
1. List Item 1
2. List Item 2
3. List Item 3
4. List Item 4
etc.
Now when its displayed in the new tab it all comes out on the same line like:
1. List Item 1 2. List Item 2 3. List Item 3 4. List Item 4
My question is, is there any way I can get it to be displayed in a list format? Like creating a new line for every list object? I tried adding a BR command in the field input itself without any luck. Anyone know how I can get it displayed like the way I input it into the field?
Thank you for any help anyone may offer.
--------------- Added [DATE]1234633359[/DATE] at [TIME]1234633359[/TIME] ---------------
Can anyone help?