MyBB Community Forums

Full Version: Defualt passage for blank fields.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi!

How can I choose a default passage for blank fields?
For example if a user do not write any thing in "Home Page" field, forum use an URL for it , but user can edit it!

do you mean on the user profile pages or the profile fields
For example if user don't use location field, forum use "127.0.0.1" for it.
It will show on profile page!
open member templates
find for something like <input type="text" .... and choose whatever you find
and in the input tag before "/>" add :
onfocus="if(this.value == 'Type IP Address...') { this.value = ''; }" onblur="if(this.value=='') { this.value='Type IP Address...'; }
change "Type IP Address..." to whatever you want