Hello,
Thanks for the access. After looking at the code, it is just an error in the plugin as the exclude jquery list should work on the admin also.
So here is what I change in the YT Framework plugin:
in www/plugins/system/yt/yt.php, around line 74 is this:
<?php
if( (JRequest::getVar('option') != $this->params->get('no_jquery')) || ( is_array($this->params->get('no_jquery')) && !in_array(JRequest::getVar('option'),$this->params->get('no_jquery')) ) ){
?>
I change it to this:
<?php
/*if( (JRequest::getVar('option') != $this->params->get('no_jquery')) || ( is_array($this->params->get('no_jquery')) && !in_array(JRequest::getVar('option'),$this->params->get('no_jquery')) ) ){*/
$no_jquery = explode(",",$this->params->get('no_jquery') ); if( !in_array(JRequest::getVar('option'),$no_jquery) ) { # seyi_code
?>
Now AwoCoupon loads fine.
Hopefully the problem will be fixed in future version of yt.