I'm still not sure why this wouldn't work.... However, I found an alternate method that works better, anyways.
On the hook
profile_fetch_profilefields, I still put my conditional. However, I just change the value of the
$userfield_wrapper so that it calls a custom template. (I guess this is the way it was MEANT to be done, because honestly, it makes a lot more sense.)
PHP Code:
if ($profilefield['profilefieldid'] == $myfieldid) {$wrapper_template = 'userfield_test_wrapper';}
Then just make the new template:
HTML Code:
<div class="blockrow"><div style="border:1px solid #000000; margin:1px;padding:1px;"><h2>Gold Membership Extras</h2><br />
<label>{vb:raw profilefield.title}:</label>
<div class="rightcol">
{vb:raw custom_field_holder}
</div>
</div></div>
(Style it a lot better than I did there, heh.)