Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
250 views
in Q2A Core by
Its possible to make some rule to present the admin view in english and LTR and the front board with other lang or RTL mode to users ?

thanks!

1 Answer

+2 votes
by

try with this 

if ($this->template === 'admin'){

$this->output(

'<html dir="ltr" ' . $extratags . '>',

$attribution

);

}

else {

$this->output(

'<html dir="rtl" ' . $extratags . '>',

$attribution

);

}

in  public function html()

...