|
|
| | Ask News.YC: How to fight features? | | 9 points by ruslan on Feb 26, 2008 | hide | past | favorite | 12 comments | | Well, it's quite obvious when your product gains some popularity users start bombing you with feature requests. The problem I would like to arise here is how do you handle these requests ? Of course you can gather some statistics then start implementing features that are being asked more frequently. But, at some point you start receiving a lot of controversial feature requests: one group of users claim that the feature they request is more important than the feature requested by the other group, sometimes even claiming to remove feature requested by the opposition. How do you rule out such situations ? Please advise. |
|

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact
|
What I would do is gather all the feature requests, and see if there is a pattern among them. Often there is. For instance, if you are doing a webforum: One user wants a feature that allows him to change tha background of the app, another user wants to change the border thickness of the forum posts, and yet another want to be able to have his name blink when he posts to the forum.
In this rather contrived example there is a clear pattern: It all has to do with design. And you can implement all the requests by creating a design editor where users can change the look of the site. If you are really clever you can do a javascript app that lets users pick out indivivual elements and apply CSS styling to them, maybe with a nice userinterface that lets him pick colors from a javascript palette, and nice input boxes for border thickness. And you can use javascript to let the user see his changes instantaneously... I'm getting carried away now...
Anyway: If you gather all the feature requests in logical groups, and look at how many requests there are in each group, as opposed to just how many users want to have their name blink when they post to your forum you will get a much clearer idea of where your problems are. Also, you will be able to solve many requests by implementing one feature - which will admittedly be a larger one, and thus more work.
If, on the other hand, you slap features on every now and then in no particular order you will in time end up with an interface that is almost impossible to figure out because there is no consistency. Just look at word ;-)
But as I said: Usability is much harder than it looks.