MyBB Community Forums

Full Version: Custom Profile Field Select Box Mod [PAID]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am looking for someone to help me with a mod. I need a way for admins to be able to change a custom profile field selection box for everyone on the site all at once. Say the selection box had the numbers 1, 2, 3. No matter what anyone selected when you press a button (or something like that) everyone's selection would go up to the next value. If anyone can help that would be much appreciated!
Let's say, User1 selected 1, User2 selected 2, User3 selected 3. When you press a button they will change to User1 selected 2, User2 selected3, User3 selected4 ?
Yes that is correct Smile
Well, it's easy with a simple query
UPDATE mybb_userfields SET fidx = fidx + 1

Just make a php file and connect it to your database. Use Page Manager to setup a page and make it Admin only. then you can call the php file and run the query with a single click.