Quote:
Originally Posted by Division
I followed the video carefully and edited the postbit, postbit legacy, and MEMBERSINFO.
I did something right though because this shows up on the EDITPROFILE option in the USERCP
But the videos dont show up. Help?
|
This line is your problem.
PHP Code:
<if condition="in_array($post['23'], array(5,6,7,12,14)) AND $post[field5]">
You weren't supposed to change
$post['usergroupid']. If you want User Group ID 23 to be the only one to use these avatars, then it should look like this.
PHP Code:
<if condition="in_array($post['usergroupid], array(23)) AND $post[field5]">
You select the user groups you want to use this by putting their ID number in the
$array(), separating multiple ID numbers with a comma.