Hello jugo thanks for your help
These are the instructions for the hack installation, can you tell me exactly where I should look? Thank you
Code:
====================================
Run this query
====================================
+---------------------+
ALTER TABLE user ADD (
staffrank varchar(100) not null default ''
)
+---------------------+
====================================
open admincp/user.php Find:
====================================
+---------------------+
print_select_row($vbphrase['language'] , 'user[languageid]', array('0' => $vbphrase['use_forum_default']) + fetch_language_titles_array('', 0), $user['languageid']);
+---------------------+
====================================
Add Under:
====================================
+---------------------+
print_input_row($vbphrase['staff_title'], 'user[staffrank]', $user['staffrank']);
+---------------------+
====================================
Add Phrase:
====================================
+---------------------+
Phrase Type: Global
Varname: staff_title
Text: Staff Title
+---------------------+
====================================
In your postbit or postbit_legacy Add where you want to show your staff title:
====================================
+---------------------+
$post[staffrank]
+---------------------+
All Done :)
Or anyone else?
Fixed. As i thought it was the VARCHAR limiting to 100, i set it to 250 and now everything works like it should

Thanks for the help