[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 180: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
IntegraMOD Home of phpBB Integrated Modifications 2006-05-19T14:26:53-07:00 https://integramod.com/forum/feed.php?f=23&t=573 2006-05-19T14:26:53-07:00 2006-05-19T14:26:53-07:00 https://integramod.com/forum/viewtopic.php?t=573&p=6628#p6628 <![CDATA[PCP Default avatar]]> Statistics: Posted Author: foxyone — Fri May 19, 2006 2:26 pm


]]>
2006-05-05T10:14:50-07:00 2006-05-05T10:14:50-07:00 https://integramod.com/forum/viewtopic.php?t=573&p=4746#p4746 <![CDATA[Re: PCP Default avatar]]> Statistics: Posted Author: Threat009 — Fri May 05, 2006 10:14 am


]]>
2006-05-03T16:43:31-07:00 2006-05-03T16:43:31-07:00 https://integramod.com/forum/viewtopic.php?t=573&p=4453#p4453 <![CDATA[Re: PCP Default avatar]]>
[color=red]Edit] Was checking out the P.C.P. and was able to set it up to force when register & what not, but got stuck on the values. Not sure I even have to do all of this. Just looking to display a default avatar when user is logged on. I think if people knew that thier avatar is displayed in thier user block they would be more likely to atleast customize that part of thier profile.....

Statistics: Posted Author: Threat009 — Wed May 03, 2006 4:43 pm


]]>
2006-05-03T14:33:54-07:00 2006-05-03T14:33:54-07:00 https://integramod.com/forum/viewtopic.php?t=573&p=4434#p4434 <![CDATA[PCP Default avatar]]>
FYI:
################################################################# ## MOD Title]http://www.web-lapin.levillage.org/forum/#[/url]# ## MOD Description: Gives you the possibility to show one avatar if the member is a male ##                  and another avatar if the member is a female. If the member have not ##                  choosen gender, a default avatar is use. ##                  it works only on users who have not choosen an avatar in their profile. ##                  Default avatar will be displayed in avatar panel , public panel and topics .## ## Requirement: Profile Control Panel 2.0.0## ## Installation Level: Easy ## Installation Time: 5 minutes #### Files To Edit: 2 ##                profilcp/def/def_userfuncs_std.php##                templates/subSilver/subSilver.cfg ## ## Included Files: 4 ##                 guest_avatar.gif ##                 no_avatar.gif ##                 no_avatar_male.gif ##                 no_avatar_female.gif ## ## ############################################################## ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD #################################################################  # #-----[ COPY ]------------------------------------------ # copy templates/subSilver/images/lang_english/guest_avatar.gif to templates/subSilver/images/lang_english/guest_avatar.gifcopy templates/subSilver/images/lang_english/no_avatar.gif to templates/subSilver/images/lang_english/no_avatar.gifcopy templates/subSilver/images/lang_english/no_avatar_male.gif to templates/subSilver/images/lang_english/no_avatar_male.gifcopy templates/subSilver/images/lang_english/no_avatar_female.gif to templates/subSilver/images/lang_english/no_avatar_female.gif  # #-----[ OPEN ]------------------------------------------ #profilcp/def/def_userfuncs_std.php  # #-----[ FIND ]------------------------------------------ #     return $res;}  //-----------------------------------//// user_sig output function  # #-----[ BEFORE, ADD ]------------------------------------------ #     // Guest and default male/female avatar for PCP 2.0.0     else if ( empty($view_userdata[$field_name]) && $userdata['user_viewavatar'] && $view_userdata['user_allowavatar'] && ($view_userdata['user_id'] != ANONYMOUS) )     {         if ( $view_userdata['user_gender'] == '1')         {               $img = '<img>';         }         else if ( $view_userdata['user_gender'] == '2')         {               $img = '<img>';         }           else           {               $img = '<img>';         }           // result         $res = pcp_output_format($field_name, $txt, $img, $map_name);     }     else if ( $view_userdata['user_id'] = ANONYMOUS)     {         $img = '<img>';           // result         $res = pcp_output_format($field_name, $txt, $img, $map_name);     }     // Guest and default male/female avatar for PCP 2.0.0  # #-----[ OPEN ]------------------------------------------ # (make sure to edit file .cfg for every theme you use). #templates/subSilver/subSilver.cfg  # #-----[ FIND ]------------------------------------------ # ?>  # #-----[ BEFORE, ADD ]------------------------------------------ #  // Guest and default male/female avatar for PCP 2.0.0$images['default_avatar'] = "$current_template_images/{LANG}/no_avatar.gif"; $images['guest_avatar'] = "$current_template_images/{LANG}/guest_avatar.gif"; $images['default_avatar_male'] = "$current_template_images/{LANG}/no_avatar_male.gif"; $images['default_avatar_female'] = "$current_template_images/{LANG}/no_avatar_female.gif"; // Guest and default male/female avatar for PCP 2.0.0  # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM

Statistics: Posted Author: Threat009 — Wed May 03, 2006 2:33 pm


]]>