The plugin is nice however there needs to made improvements with the script. The first problem is if the installed site uses multi language like Englisgh - Turkish , the plugin adds 4 query as default to all pages , which is a huge problem. Ir order to solve this problem the following code needs to be replaced with actual phrases
find
$woopra_email_phrase = fetch_phrase('email', 'global', '', '', '', $vbulletin->options['languageid']);
$woopra_usertitle_phrase = fetch_phrase('user_title', 'user', '', '', '', $vbulletin->options['languageid']);
$woopra_totalposts_phrase = fetch_phrase('total_posts', 'user', '', '', '', $vbulletin->options['languageid']);
$woopra_joindate_phrase = fetch_phrase('join_date', 'global', '', '', '', $vbulletin->options['languageid']);
replace with
$woopra_email_phrase = $vbphrase[woopra_email_phrase];
$woopra_usertitle_phrase = $vbphrase[woopra_usertitle_phrase];
$woopra_totalposts_phrase = $vbphrase[posts];
$woopra_joindate_phrase = $vbphrase[join_date];
With this change 2 new phrase is needed woopra_email_phrase and woopra_usertitle_phrase . The installer can install the phrases or you can ask the administrator to add it manually.
not a support question