Quote:
Originally Posted by littlematts
First of all let me thank you antialiasis for your great mod you provided.
I installed your mod on my vbull forum vBulletin? v3.6.4 and it is working perfect with the registration page..
but the issue i face is with integration.. I am not able to integrate the same with Quick Register Ver: 1.6.3 installed along. The question itself is not showing up. I have tried updating the script as specified by you in integration details page but to no avail.
regards
Matthew
|
I had the same problem as you (if you look back in the thread I have posted a couple of times but got no joy) anyway I have fixed my issue and by the looks of things it may help you as you seem to be having the exact problem i was having...
To fix mine I inserted some code into the quickregister plugin.
in the quick register plugin at global start look for this
Code:
$show['guest'] = true;
and above that place this
Code:
if ($vbulletin->options['nospam_use_reg'] AND $vbulletin->options['quickregister_active']) {
$questions = explode("\n", $vbulletin->options['nospam_questions']);
$nospamnumber = array_rand($questions);
$qanda = explode(":",$questions["$nospamnumber"]);
$nospamquestion = $qanda[0];
}
This when applied to my quick register plugin got the question to appear as well as the box for the answer
I hope this fixs your issue as the nospam hack is IMO one of if not the best hack on vbulletin.org and I was disappointed that it would not work on my quick register which also is a must have for increased registrations.
It might be an idea to whack this in the readme for others in the same situation
if there are any.