I attempted to add a profile field as per the instructions in the author-pane.tpl.php

I added:

Styles: print $profile['Personal Information']['profile_styles']['#value'];

And it works if the user has the field profile_styles populated.

However, if a user does not have a value for that field I get:

Fatal error: Cannot use string offset as an array in [location removed for privacy]/advanced_forum.naked.author-pane.tpl.php on line 89

Comments

michelle’s picture

Category: bug » support
Status: Active » Postponed (maintainer needs more info)

Try:

  if (!empty(print $profile['Personal Information']['profile_styles']['#value']) {
    print $profile['Personal Information']['profile_styles']['#value']; 
  }

Michelle

michelle’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

No more comment from OP... Closing.

Michelle