Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hi,
    I know that this topic is already a bit out of date, but this issue is still not solved. I found temporary solution for this. For some reasons qtranslate cannot load common.js file properly. Probably this is a problem of minified version of this js. I checked that, and I replace following line in qtx_admin.php:

    -               $page_config['js'][] = array( 'handle' => 'qtranslate-admin-common', 'src' => './admin/js/common.min.js');
    +               $page_config['js'][] = array( 'handle' => 'qtranslate-admin-common', 'src' => './admin/js/common.js');

    Furthermore there is a problem, because plugin call undefined method – because addContentHooksTinyMCE() is a function indeed. In my case I added this method just like this into the common.js file:

    this.addContentHooksTinyMCE=function()
    	{
    		addContentHooksTinyMCE();
    	}

    This solution works for me.

Viewing 1 replies (of 1 total)