Hi,

I was testing your free extension with joomla 3.3 and I couldn't get it to work!

PROBLEM 1

I was constantly getting error JQuery not found, other extensions were working well except this ( I mean all those that used my existing jquery). Problem was that it was always loading jlexreviews.js before the jquery.

SOLUTION

go to components/com_jlexreview/load.php and change

$doc = JFactory::getDocument ();

to this
$doc = JFactory::getDocument ();
JHtml::_('jquery.framework');


This way JQuery always loaded before and no one will ever complain about it.

PROBLEM 2

When captcha is off the javascript loaded from jreviews component still has references to the recaptcha() and it's not possible to post reviews

NO SOLUTION

I could only make it work when I switched the captcha back on. Is it possible to fix it?


Just wanted to share this and save time for everyone.