Maybe sounds crazy to have a powerfull forum and to install this AddOn. But this is not true. I do agree that vB has tons of features for any type of discussions. But from the other point Yahoo Answers (and dozens of similars sites) became famous, because they offer a simple way to users to get replies. Short questions, with a couple of replies. Why to go in a complicated system for this? And why to add dozens of extra categories, subcategories etc etc, just for this? This is the reason that you need it.
2.- How it works?
Very simple, so easy to use by novice users too. A member is posting a question in any of your categories (unlimited level are supporting) and then is waiting other members to post a reply. Reads the replies, chooses the best and that's all. There is no need for discussion here.
3.- Installation
Download, unzip and upload all files from the "upload" folder where your vb installation is (you can't install in different directory).
Goto you admincp and import the product-discuss.xml
That's all
4.- Configuration
Configuration is very easy and is like all other addons here. You need to follow the steps below, and soon you'll be ready:
First of all goto Usergroup permissions and set what each usergroup can do or not do.
Goto Discuss General setting, check the default values and change them if you want
PM Templates. I believe that the predefinied text is ok for most of you. But if you want you can change them. Please don't touce the variables (anything inside {}). The available variables are:
{questiontitle} : Title with link
{questiontitle_nolink} : As above but without link
{category} : Category name with link
{category_nolink} : Category without link
{questionowner} : The author's username with link
{questionowner_nolink} : As above, no link
{description} : 200 chars from the question body
{username} : This is the "To:" value. eg Dear {username},
{postdate_short} : Post date in format that you've set as long dates
{postdate_long} : Same as above in long date format
{signature} : Anything that you've set in your settings
Last step is to set your categories.
5.- Copyright
In the footer of each page there is a link back to my site vBulletON.com. Even if it easy to remove it, please avoid doing it. Respect if you want to be respected. That's the only that I can say.
6.- PRO version
Currently there is no one. I don't use to build an addon, and then remove 90% of its features to make a free version. No. This is all that I've done. Sure there are dozens of more features that I can add. If I see that this mod becomes popular then I'll add them but as commercial version.
@klaush
@3raq4all
-------------
Why do you think that is not supporting? Is there any bug report that I didn't replied and fixed? Of course I'm greatfull to all of you for your nice comments, but I was very busy to come online just to reply to compliments.
The problem is that I don't have any vB3 installation to check it in real. But the same code exists in the version for vB4, and I didn't got any report there.
Can you give me your installation URL to try it? or better goto Add question form, and right click to see the page's code, and save that code in a file. Then post it here to give a look.
function validateForm_question()
{
if(document.forms["question"].title.value.length == 0) {
alert('You need to enter a title for your Question.');
return false;
}
if(document.forms["question"].categoryid != undefined){
if(!isNaN(document.forms["question"].categoryid.value) == 0) {
alert('Category id must be a number.');
return false;
}else if(document.forms["question"].categoryid.value ==0){
alert("Please Select a Category.");
return false;
}
}
if(document.forms["question"].categoryid != undefined){
if(document.forms["question"].type.value == 0){
alert("");
return false;
}
}
return true;
}