• Welcome to ForumKorner!
    Join today and become a part of the community.

[Tutorial] Drop-Down List Report vs. Textbox Report

Simple

Active Member
Reputation
0
If you're running MyBB with it's default templates for reporting then a report box should look something like this:

0ArwM.png


When it could look more like this -

hXXPP.png


Personally I believe this to be superior to a textbox method for more then one reason. For once it could eliminate the possibility of a user spamming reports which would be a waste of his time, and very uncommon, but it's gone . I also believe it makes the sight more professional, and the reports are easier to manage, this is simply a personal belief. But why not take a look for yourself, just read this tutorial and you will have this on your site in no time.

We're going to start out by navigating to your admin panel, logging in and doing the following.

Admin CP > Templates & Style > Templates > Expanding Your Current Template > Report Templates > Expand > Report > Full Edit

Do a search for:

Code:
<input type="text" class="textbox" name="reason" size="40" maxlength="250" />

and replace it with the following:

PHP:
<SELECT NAME="reason">
<OPTION VALUE="Leeching" >Leeching
<OPTION VALUE="Low Quality" >Low Quality
<OPTION VALUE="Spamming" >Spamming
<OPTION VALUE="Hacking" >Hacking
</SELECT>

Also using this method you can display a different reason as the text displayed to the users, sounds confusing? Let me explain more. Using the:

PHP:
<OPTION VALUE="Low Quality" >Low Quality

method, we can edit what's in quotes to be posted to the report, and leave the [php>Low Quality[/php] as is and it would be displayed as such to the user. So we could do:

PHP:
<OPTION VALUE="Leech (If valid then delete, do not trash)"  >Leeching

so users see -

VtUVf.png


but our staff sees -

iQqNb.png


hmm a pretty simple way to give pretty simple instructions.
Now if you want some more tips, look up what all you can do with drop-down boxes! w3schools is a good resource I'm assuming or just stick to google! For example one thing I learned is you can set the box to automatically select whichever report you want, without switching the order. This could be used for example, to auto-select the most popular report reason, without having to change any orders. Take your code, for example -

PHP:
<OPTION VALUE="Spamming" >Spamming

and between the text in quotes, and the ">", add the word, without quotes, "SELECTED". So your code would become:

PHP:
<OPTION VALUE="Spamming" SELECTED >Spamming

pFwp8.png


Perfect.
Let me know if you have any questions guys. Also I would like to say as a little in before, I'm well aware none of the code is php, but I think the colors for it are awesome , also I'm sure this has been posted but I'm trying to go in depth and show all aspects of this option. Enjoy enjoy and let me know if you want me to add some more tips like making a certain choice auto-selected!

I also posted this on mybb.com's forum but nobody replied which made me feel like writing the whole thing was useless lol, but unfortunately this site has seen MUCH better days so I may not even get any replies here.​
 

Mxlitary

Active Member
Reputation
0
Thanks for the detailed tutorial.

I don't use MyBB, so I personally have no user for it, but I think this would be a great upgrade for Uzi Gaming.
 

Marijuana

Onyx user!
Reputation
0
It would help more people report because they know what to report but lets say the topic has a hidden meaning the is against the rules and its not an option?
 

Try

User is banned.
Reputation
0
Blur said:
Yeah, this should be added to UziGaming! Thanks for your feedback, guys.

I Suggested this ahwile agoo



# Great Thinker Award if you guys do this .
 

District

User is banned.
Reputation
0
Blur said:
Yeah, this should be added to UziGaming! Thanks for your feedback, guys.

Indeed but we don't get too many LQ posts.
 

Slyestcat

Member
Reputation
0
That's really really good. I would love to see this implemented on other mybb forums.
 

District

User is banned.
Reputation
0
Slyestcat said:
That's really really good. I would love to see this implemented on other mybb forums.

HF has it :)
 

Try

User is banned.
Reputation
0
au3 said:
Try said:
Blur said:
You're just an award whore, gtfo. :)



Comeing from the dude that bought 2 awards :)

He donated to the community, he received those in return.



Same thing when you buy something at the store you get something in return if you get something in return it's more of a trade .
 

Try

User is banned.
Reputation
0
Blur said:
Haha, so for donating money, I bought awards?

Yeah Pretty Much . if you don't donate you can never get them so That's like buying them ,
 
Top