One user just crossed the threshold to a new title, and a new title did not appear. She was an import from a WWWThreads conversion. Any ideas as to why that would happen?
Mar 19, 2002, 3:30 PM
Staff (4101 posts)
Mar 19, 2002, 3:30 PM
Post #2 of 8
Views: 2779
This might have happened because of the import. The default behaviour for the imports is that it will use the User Title scheme of the old, imported forum. If they have a title in their user profile which doesn't exist, then it is assumed it is a custom title.
If no one has a custom title, then you can easily fix this problem by running a SQL command (like in MySQLMan, or in the MySQL client). Gossamer Forum will automatically calculate a user's title by their posts if the user_title column is empty, so if you did:
where <prefix> is the table prefix (if you set one).
That would make everyone's Title depend on their post count.
Adrian
If no one has a custom title, then you can easily fix this problem by running a SQL command (like in MySQLMan, or in the MySQL client). Gossamer Forum will automatically calculate a user's title by their posts if the user_title column is empty, so if you did:
Code:
UPDATE <prefix>User SET user_title = ''That would make everyone's Title depend on their post count.
Adrian