| Question:
 I see about three references to including registration date, number of posts, etc in this forum, however, I have tried everything possible, and seem to be running to displaying them.
 
 I am trying to include the avatar and number of posts.  I am getting either number of posts, OR I get the avatar, but not at the same time.
 
 Here is what I have in the setup options.
 
 $userInfoInPosts=array('user_custom1',$dbUserSheme['username'][1]);
 $userInfoInPosts=array('num_posts',$dbUserSheme['username'][1]);
 
 This displays the posts, but removes the Avatar.  If I add the // to the num_posts line, then I get the avatar back.
 
 Here is what i am using in the main_post_cell.html:
 
 Avatar: {$userInfo_user_custom1[$poster_id]}
 Posts: {$userInfo_num_posts[$poster_id]}
 
 Also, I have two other questions:
 
 1. What is the [1] (....$dbUserSheme['username'][1]); ) suppose to be?
 2. If I decide to use regdate, how would I use for the setup_options and the template?
 
 Thanks!
 |