Alejandro Posted October 17, 2008 at 08:07 PM Share Posted October 17, 2008 at 08:07 PM The YooEffects plugin used in YooTheme templates causes the listing form to hang. There might be other issues as well, but this is the one I caught so far. To get around this you need to edit the following file by changing the code as shown below. /plugins/system/yoo_effects.php $mainframe->registerEvent( 'onAfterDispatch', 'plgSystemYOOeffects' ); To: if(isset($_GET['no_html']) && $_GET['no_html'] == 1) { // Don't run plugin. Added for jReviews compatibility } else { $mainframe->registerEvent( 'onAfterDispatch', 'plgSystemYOOeffects' ); } This prevents the plugin from running in ajax calls where it is not needed. Link to comment
EzerchE Posted January 8, 2009 at 02:05 PM Share Posted January 8, 2009 at 02:05 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Alejandro Posted January 8, 2009 at 03:00 PM Author Share Posted January 8, 2009 at 03:00 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Recommended Posts