Jump to content

wysiwyg editor disabling


Recommended Posts

Because in greek language if i write for example the following sentence :

Σαμπουάν αγωγής για τη ξηρή πιτυρίδα
in the database has the following format :

Σαμπουάν αγωγής για τη ξηρή πιτυρίδα
Link to comment
Share on other sites

Hi Peter.

I tried to update and i installed and a fresh installation but i had the same problem again.

 

Finally i found the solution

If anyone have the same problem must doing this -->

 

in the file AdminProducts.php replace this :

$iso = Language::getIsoById($defaultLanguage);
	echo ((!file_exists(PS_ADMIN_DIR.'/../js/tinymce/jscripts/tiny_mce/langs/'.$iso.'.js')) ? 'en' : $iso).'",
				mode : "textareas",
				theme : "advanced",

with this:

$iso = Language::getIsoById($defaultLanguage);
	echo ((!file_exists(PS_ADMIN_DIR.'/../js/tinymce/jscripts/tiny_mce/langs/'.$iso.'.js')) ? 'en' : $iso).'",
				entity_encoding : "raw",
				mode : "textareas",
				theme : "advanced",

 

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...