Jump to content

YooTheme YooEffects conflict causing listing submit form to hang


Alejandro

Recommended Posts

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
  • 2 months later...
×
×
  • Create New...