If the following code is commented, the extension will not populate "name" and "email" fields with previous values for new quiz sessions:
Code: |
$data['Email'] = AriUtils::getParam($_COOKIE, 'aq_email', '');
$data['UserName'] = AriUtils::getParam($_COOKIE, 'aq_name', '');
|
The extension shows the form only for guest users, if you want to change this behaviour see the following code in <joomla_directory>/components/com_ariquiz/controllers/quiz.php file:
Code: |
if ($user->get('id') == 0 && $quiz->Anonymous != 'Yes')
{
$formView = $this->getSubView('guestform', 'quizform');
}
|
Regards,
ARI Soft