Visit: http://xod-themes.no-ip.info







1 Open profile.php and find

   if (array_key_exists(4, $user_fields_output) && $user_fields_output[4]) {
      echo "<div style='margin:5px'></div>\n";
      echo "<table cellpadding='0' cellspacing='1' width='400' class='tbl-border center'>\n<tr>\n";
      echo "<td colspan='2' class='tbl2'><strong>".$locale['u047']."</strong></td>\n";
      echo "</tr>\n".$user_fields_output[4];
      echo "</table>\n";
       }





Add this directly after

if (array_key_exists(5, $user_fields_output) && $user_fields_output[5]) {
      echo "<div style='margin:5px'></div>\n";
      echo "<table cellpadding='0' cellspacing='1' width='400' class='tbl-border center'>\n<tr>\n";
      echo "<td colspan='2' class='tbl2'><strong>".$locale['u051']."</strong></td>\n";
      echo "</tr>\n".$user_fields_output[5];
      echo "</table>\n";
}

if (array_key_exists(6, $user_fields_output) && $user_fields_output[6]) {
      echo "<div style='margin:5px'></div>\n";
      echo "<table cellpadding='0' cellspacing='1' width='400' class='tbl-border center'>\n<tr>\n";
      echo "<td colspan='2' class='tbl2'><strong>".$locale['u052']."</strong></td>\n";
      echo "</tr>\n".$user_fields_output[6];
      echo "</table>\n";
}

if (array_key_exists(7, $user_fields_output) && $user_fields_output[7]) {
      echo "<div style='margin:5px'></div>\n";
      echo "<table cellpadding='0' cellspacing='1' width='400' class='tbl-border center'>\n<tr>\n";
      echo "<td colspan='2' class='tbl2'><strong>".$locale['u053']."</strong></td>\n";
      echo "</tr>\n".$user_fields_output[7];
      echo "</table>\n";
}




Code should now look like this

if (array_key_exists(1, $user_fields_output) && $user_fields_output[1]) {
      echo "<div style='margin:5px'></div>\n";
      echo "<table cellpadding='0' cellspacing='1' width='400' class='tbl-border center'>\n<tr>\n";
      echo "<td colspan='2' class='tbl2'><strong>".$locale['u044']."</strong></td>\n";
      echo "</tr>\n".$user_fields_output[1];
      echo "</table>\n";
   }

   if (array_key_exists(2, $user_fields_output) && $user_fields_output[2]) {
      echo "<div style='margin:5px'></div>\n";
      echo "<table cellpadding='0' cellspacing='1' width='400' class='tbl-border center'>\n<tr>\n";
      echo "<td colspan='2' class='tbl2'><strong>".$locale['u045']."</strong></td>\n";
      echo "</tr>\n".$user_fields_output[2];
      echo "</table>\n";
   }

   if (array_key_exists(4, $user_fields_output) && $user_fields_output[4]) {
      echo "<div style='margin:5px'></div>\n";
      echo "<table cellpadding='0' cellspacing='1' width='400' class='tbl-border center'>\n<tr>\n";
      echo "<td colspan='2' class='tbl2'><strong>".$locale['u047']."</strong></td>\n";
      echo "</tr>\n".$user_fields_output[4];
      echo "</table>\n";
       }

if (array_key_exists(5, $user_fields_output) && $user_fields_output[5]) {
      echo "<div style='margin:5px'></div>\n";
      echo "<table cellpadding='0' cellspacing='1' width='400' class='tbl-border center'>\n<tr>\n";
      echo "<td colspan='2' class='tbl2'><strong>".$locale['u051']."</strong></td>\n";
      echo "</tr>\n".$user_fields_output[5];
      echo "</table>\n";
   }

if (array_key_exists(6, $user_fields_output) && $user_fields_output[6]) {
      echo "<div style='margin:5px'></div>\n";
      echo "<table cellpadding='0' cellspacing='1' width='400' class='tbl-border center'>\n<tr>\n";
      echo "<td colspan='2' class='tbl2'><strong>".$locale['u052']."</strong></td>\n";
      echo "</tr>\n".$user_fields_output[6];
      echo "</table>\n";
}

if (array_key_exists(7, $user_fields_output) && $user_fields_output[7]) {
      echo "<div style='margin:5px'></div>\n";
      echo "<table cellpadding='0' cellspacing='1' width='400' class='tbl-border center'>\n<tr>\n";
      echo "<td colspan='2' class='tbl2'><strong>".$locale['u053']."</strong></td>\n";
      echo "</tr>\n".$user_fields_output[7];
      echo "</table>\n";
}


Save and close


2 Open edit_profile.php and find

} elseif ($data2['field_group'] == 3) {
         echo $locale['u046'];




Add this directly after

} elseif ($data2['field_group'] == 5) {
         echo $locale['u051'];
            } elseif ($data2['field_group'] == 6) {
         echo $locale['u052'];
            } elseif ($data2['field_group'] == 7) {
         echo $locale['u053'];





Code should now look like this

if ($data2['field_group'] == 1) {
         echo $locale['u044'];
      } elseif ($data2['field_group'] == 2) {
         echo $locale['u045'];
} elseif ($data2['field_group'] == 3) {
         echo $locale['u046'];
            } elseif ($data2['field_group'] == 5) {
         echo $locale['u051'];
            } elseif ($data2['field_group'] == 6) {
         echo $locale['u052'];
            } elseif ($data2['field_group'] == 7) {
         echo $locale['u053'];
      }



Save and close


3 Go to Administration and open user_fields.php and find

} elseif ($user_field_group == 4) {
         echo $locale['453'];





Add this directly after

if ($user_field_group == 1) {
         echo $locale['450'];
       } elseif ($user_field_group == 2) {
         echo $locale['451'];
       } elseif ($user_field_group == 3) {
         echo $locale['452'];
       } elseif ($user_field_group == 4) {
         echo $locale['453'];
            } elseif ($user_field_group == 5) {
         echo $locale['454'];
            } elseif ($user_field_group == 6) {
         echo $locale['455'];
            } elseif ($user_field_group == 7) {
         echo $locale['456'];
      }





Find this in the same file

} elseif ($user_field_group == 4) {
            echo $locale['453'];




Add this directly after

 } elseif ($user_field_group == 5) {
            echo $locale['454'];
                  } elseif ($user_field_group == 6) {
            echo $locale['455'];
                  } elseif ($user_field_group == 7) {
            echo $locale['456'];
                  }





Code should now look like this

   if ($user_field_group == 1) {
            echo $locale['450'];
         } elseif ($user_field_group == 2) {
            echo $locale['451'];
         } elseif ($user_field_group == 3) {
            echo $locale['452'];
         } elseif ($user_field_group == 4) {
            echo $locale['453'];
         } elseif ($user_field_group == 5) {
            echo $locale['454'];
                        } elseif ($user_field_group == 6) {
            echo $locale['455'];
                        } elseif ($user_field_group == 7) {
            echo $locale['456'];
                  }



Save and close





4 Go to your locale folder and open user_fields.php and find

$locale['u050'] = "Undefined";





And add this directly after

$locale['u051'] = "<img src='".IMAGES."userfields_image/ingame.png' alt='' border='0' /> Personal";
$locale['u052'] = "<img src='".IMAGES."userfields_image/hardware.png' alt='' border='0' /> Hardware";
$locale['u053'] = "<img src='".IMAGES."userfields_image/favorite.png' alt='' border='0' /> Favorites";



Save and close





5 Go to your locale folder/admin and open user_fields.php and find

$locale['453'] = "Statistics";




Add this directly after

$locale['454'] = "Personal";
$locale['455'] = "Hardware";
$locale['456'] = "Favorites";


Save and close

Enjoy






