Tatian68 Posted November 1, 2012 Share Posted November 1, 2012 Bonjour, Je cherche et recherche sur le net, un moyen propre pour activer l'éditeur WYSIWYG dans les catégories (backend) Merci pour votre aide Link to comment Share on other sites More sharing options...
Valérie Assetskaya Posted November 2, 2012 Share Posted November 2, 2012 Bonjour, En PrestaShop 1.5 on peut facilement ajouté l'éditeur HTML TinyMCE au champ Description Pour le faire, dans le fichier controllers / admin / AdminCmsController.php il faut trouver le code suivant: array ( 'Type' => 'textarea', 'label' => $ this-> l ('Description:'), 'Name' => 'description', 'Lang' => true, «Rows '=> 10, «Cols '=> 100, 'Hint' => $ this-> l ('Les caractères non valides:'). '<> = # {} ' ) (ligne 399) et le remplacer par ceci: array ( 'Type' => 'textarea', 'label' => $ this-> l ('Description:'), 'Name' => 'description', 'Lang' => true, «Rows '=> 10, «Cols '=> 100, 'Hint' => $ this-> l ('Les caractères non valides:'). '<> = # {} ' «Autoload_rte '=> true ) Line 'autoload_rte' => true est responsable pour le connexion de l'éditeur. strip_tags pour description est non, donc il n'y aura pas de problèmes d'enregistrement. Cordialement Link to comment Share on other sites More sharing options...
jeckyl Posted November 2, 2012 Share Posted November 2, 2012 Bonjour, Pour utiliser le html dans vos descriptions de catégories, sur prestashop 1.4 ou 1.5, nous vous proposons ce module : http://www.prestatoolbox.fr/outils-administration/195-html-dans-les-categories.html Link to comment Share on other sites More sharing options...
Tatian68 Posted November 3, 2012 Author Share Posted November 3, 2012 Merci à vous ca fonctionne. Link to comment Share on other sites More sharing options...
A1TH Posted March 28, 2013 Share Posted March 28, 2013 Merci à vous ca fonctionne. Qu'est ce qui fonctionne ? La solution mentionnée par Valérie pour PS 1.4.9 ? Si oui, je préfère plutôt qu'un module payant. Merci par avance de votre réponse, (ça m'évitera de faire un essai sans savoir). Link to comment Share on other sites More sharing options...
jeckyl Posted March 28, 2013 Share Posted March 28, 2013 Qu'est ce qui fonctionne ? La solution mentionnée par Valérie pour PS 1.4.9 ? Si oui, je préfère plutôt qu'un module payant. Merci par avance de votre réponse, (ça m'évitera de faire un essai sans savoir). non la solution proposé ne fonctionne que pour 1.5. Link to comment Share on other sites More sharing options...
A1TH Posted March 29, 2013 Share Posted March 29, 2013 Merci Jeckyl pour ta réponse. Mise à part le module dont tu proposes, y a t'il un moyen simple d'introduire du texte (sans être un éditeur sophistiqué), simplement afin de pouvoir mettre quelques h2 et h3 et du texte avec les balises strong, ceci dans les pages catégories ? Merci de ton aide. Link to comment Share on other sites More sharing options...
jeckyl Posted March 29, 2013 Share Posted March 29, 2013 simple non. Link to comment Share on other sites More sharing options...
VbnPresta Posted June 23, 2013 Share Posted June 23, 2013 Bonjour, En PrestaShop 1.5 on peut facilement ajouté l'éditeur HTML TinyMCE au champ Description Pour le faire, dans le fichier controllers / admin / AdminCmsController.php il faut trouver le code suivant: array ( 'Type' => 'textarea', 'label' => $ this-> l ('Description:'), 'Name' => 'description', 'Lang' => true, «Rows '=> 10, «Cols '=> 100, 'Hint' => $ this-> l ('Les caractères non valides:'). '<> = # {} ' ) (ligne 399) et le remplacer par ceci: array ( 'Type' => 'textarea', 'label' => $ this-> l ('Description:'), 'Name' => 'description', 'Lang' => true, «Rows '=> 10, «Cols '=> 100, 'Hint' => $ this-> l ('Les caractères non valides:'). '<> = # {} ' «Autoload_rte '=> true ) Line 'autoload_rte' => true est responsable pour le connexion de l'éditeur. strip_tags pour description est non, donc il n'y aura pas de problèmes d'enregistrement. Cordialement Hi THanks for trick but i dont have these lines in my file !!!!! my file finished at 375 line. I am with Presta 1.5.4 How to do or add ? Link to comment Share on other sites More sharing options...
Valérie Assetskaya Posted June 24, 2013 Share Posted June 24, 2013 HiTHanks for trick but i dont have these lines in my file !!!!! my file finished at 375 line. I am with Presta 1.5.4 How to do or add ? Hi, For your version, please, find the following fragment: array( 'type' => 'textarea', 'label' => $this->l('Page content'), 'name' => 'content', 'autoload_rte' => true, //here is the code responsible for connecting TinyMCE 'lang' => true, 'rows' => 5, 'cols' => 40, 'hint' => $this->l('Invalid characters:').' <>;=#{}' ), ~145 line Best regards. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now