Login     Sign up
Moving the "DETAILS" to over the "Status Update" box on a profile?
Thomas Ramsey (@theartistconnect)
Join date: Oct 27th 2010
Community posts: 38
View Profile
Send Message

still get an error this is my code for the custom fields when I inserted directly below the "about me"...correct?

[code]for($i=1;$i<=7;$i++) {
$col = 'var'.$i;
$key = 'cf_var'.$i;
$key2 = 'cf_var_value'.$i;
$key3 = 'cf_var_des'.$i;
$key4 = 'cf_var_label'.$i;
$type = get_gvar($key);
$value = get_gvar($key2);
$des = get_gvar($key3);
$label = get_gvar($key4);
if ($type != 'disabled' && strlen($owner[$col])) {
$output .= '
<dt>'.$label.'</dt>
<dd>'.htmlspecialchars($owner[$col]).'</dd>
';
}[/code]

(custom fields, the ones I create inside admin cp)

172 months ago
tom moore (@tomtomtom)
Join date: Nov 14th 2010
Community posts: 16
View Profile
Send Message

I tried too, except I did this.....

[code]
}
if ($page['type']=='u') {
section(array('title' => 'about_me', '$label' => $owner['$col']));
}

[/code]

I got the white error page? does neone know how to move the custom fields around, I too hate them on the side and want to do it over the status box-I changed to $owner falcone but it doesnt work.

the custom fields look different than about me though?

172 months ago
Prev 1 2 3