Im a newb at drupal, but Id like to change the look of the profiles. I made a user_profile.tpl.php and messed around with it a lot, but I can only find snippets for drupal 4 and they dont work.

Could you post your customizes user_profile.tpl.php with the CSS code, so I cna play around with it?

Comments

vm’s picture

investigate the advanced_profile.module

_____________________________________________________________________
My posts & comments are usually dripping with sarcasm.
If you ask nicely I'll give you a towel : )

shenkieshenkie’s picture

thanks for your reply, but I dont need an advanced user profile... I just want to change the look of the default profile..

what are the drupal 5 php codes to show single list, selection lists etc?

vm’s picture

http://drupal.org/node/35728

_____________________________________________________________________
My posts & comments are usually dripping with sarcasm.
If you ask nicely I'll give you a towel : )

shenkieshenkie’s picture

yes I have tried all kinds of snippets on that page, but they are not working. they are all drupal 4...

could you paste the code here how to print a single and select field in the profile that does work for drupal 5? ..

vm’s picture

They are tagged for 4.x 5.x and 6.x not soley for 4.x

_____________________________________________________________________
My posts & comments are usually dripping with sarcasm.
If you ask nicely I'll give you a towel : )

VVN’s picture

http://drupal.org/node/165114

$user->[yourfield] should works, anyway

shenkieshenkie’s picture

no that does not work... and that link is for drupal 4!

VVN’s picture

i'm using this in my template.php, and all $user->[fields]s work

function phptemplate_user_profile($user, $fields = array()) {
 drupal_set_title($user->name);
return _phptemplate_callback('user_profile', array('user' => $user, 'fields' => $fields));
  }