Hi
We are using T4 framework with Quix Page builder. We just found that t4 framework has a very beautiful editor layout interface from frontend.
The problem is you forced that layout for all editor layout for all joomla components. Its overriding our builder page. As its hardcoded from your system plugin onAfterDispatch event.
Please add it as a bug and release the update, so we can use the power of t4 framework. Example of the codes:
public function onAfterDispatch()
{
if(!$this->isSite()) return;
$app = JFactory::getApplication();
$input = $app->input;
$inedit = $input->get('layout') == 'edit' || ($input->get('option') == 'com_config' && $input->get('view') != 'templates');
if($inedit){
$app->set('themes.base', T4PATH_ADMIN);
$app->set('theme','theme');
}
}
Thank you.