Search the Community
Showing results for tags 'tinyMCE'.
-
Hola. Desde hace tiempo que no me carga el editor de texto tinymce en la administración de la tienda He probado absolutamente de todo, pero no encuentro el error. Ya en la versión 1.6.1.16 tenía ese problema, y al actualizar a la última versión, continuó. Si hago clic en "inspeccionar" me sale este error "Uncaught ReferenceError: tinySetup is not defined" y también GET https://*****/js/admin/tinymce.inc.js net::ERR_ABORTED En información de configuración he visto que no tengo activado PHP fopen(), que no se si tiene algo que ver. Desde cPanel he ido a seleccionar versión de php, y en la lista de funciones esta no aparece por ningún lado ¿Alguien me puede ayudar?
-
Bonjour, Comment uploader un fichier mp3 sur le serveur quand on est sur une page produit côté l'administration ? Lorsque j'essaie via le filemanager (bouton "Insérer une image" de l'éditeur de texte), j'obtiens un message d'erreur 'file extension is not allowed". Comment modifier la liste des extensions autorisées ? J'ai essayé à plusieurs endroits mais n'ai pas obtenu de résultats. Mon objectif est d'insérer dans une fiche produit un lecteur audio, pour cela j'ai créé un champ texte simple qui contiendra uniquement le nom du fichier mp3. Dans le fichier product.tpl, j'ajoute la balise <audio> et le chemin du dossier où sont rangés mes ficheirs audio et j'appelle le contenu du champ pour créer un lecteur mp3. Mon seul problème est que je ne peux pas uploader de fichiers mp3 via l'administration. Merci d'avance pour votre aide
- 2 replies
-
- lecteur audio
- mp3
- (and 7 more)
-
Hallo allerseits, ich habe eben versucht, nach dieser Anleitung: https://www.prestashop.com/forums/topic/318425-tutorial-tinymce-rich-text-editor-extended-version/ Den Prestashop Editor zu erweitern. Der sieht aber immer noch aus wie vorher, die zusätzlichen Buttons fehlen. Mach ich da irgendwas falsch? Ich hab alle Punkte abgearbeitet, wie auch Cache geleert, aber es tut sich irgendwie nix. Edit sagt, ich solle noch erwähnen, dass ich Version 1.6.1.7 verwende, auf eigenem Webspace. Viele Grüße Michael
-
Hi team. I tried several times to upgrade the shop to a newer version but always was failing so we stay in the version 1.4.9.0, now, im trying to make some changes to tinymce editor, but it doesnt work i added the line extended_valid_elements: "figcaption|figure[class]", to the file tinymce.inc.js in order to show some effects of html5 in a image, but tinymce clear the code. so I delete the content of the tiny_mce folder in "JS" folder, i download the newer version from tinymce webpage and then i upload the content to tiny_mce folder, thinking that in this way maybe the changes to tinymce.inc.js could work. but nothing, i cannot upgrade or at least make the tinymce work as i want. some of you have an idea to make this work. ? domain: drexeldieselparts .com Regards!
-
Hi all, i'm a newbie in Prestashop, and i'm using the HelperForm. I want to add a rich text editor to my textarea. I searched on google and found that (in fr). But when i add autoload_rte on my field i have that : http://www.noelshack.com/2016-22-1464766939-capture-du-2016-06-01-09-41-01.png So all my fields are in tinyMCE and i want just my last field... Behind my code : private function createNewAdminForm() { $this->fields_form[] = array( 'form' => array( 'legend' => array('title' => $this->l('ax_banniere')), 'input' => array( array( 'type' => 'text', 'name' => 'title', 'label' => 'Titre', 'required' => true ), array( 'type' => 'text', 'name' => 'date_debut_publication', 'label' => 'Date de début de publication', 'required' => true ), array( 'type' => 'text', 'name' => 'date_fin_publication', 'label' => 'Date de fin de publication', 'required' => true ), array( 'type' => 'textarea', 'name' => 'content', 'label' => 'Contenu', 'rows' => 5, 'cols' => 20, 'lang' => false, 'required' => true, 'autoload_rte' => true, 'hint' => 'Invalid characters: <>;=#{}' ), ), 'submit' => array( 'title' => 'sauvegarder', // This is the button that saves the whole fieldset. 'class' => 'button', 'name' => 'submitax_banniere' ) ) ); $helper = new HelperForm(); $helper->module = $this; $helper->name_controller = $this->name; $helper->token = Tools::getAdminTokenLite('AdminModules'); $helper->currentIndex = AdminController::$currentIndex . '&configure=' . $this->name; $helper->identifier = $this->identifier; $helper->title = 'Ax_banniere_custom'; $helper->show_toolbar = false; $helper->toolbar_btn = $this->_initToolbar(true); $helper->submit_action = 'submitax_banniere'; $c = new Customban(); $helper -> fields_value = array('title' => '', 'date_debut_publication' => '', 'date_fin_publication' => '', 'content'=> ''); return $helper->generateForm($this->fields_form); Note : i'm using Prestashop 1.5, if someone have got any answer it can be great. And sorry for my bad english Thanks
-
- 1
-
-
- HelperForm
- TinyMCE
-
(and 1 more)
Tagged with:
-
Bonjour, Je souhaiterais savoir comment autoriser l'insertion de codes html dans l'éditeur TinyMCE fournit par défaut dans Prestashop 1.4.6.2. Si on écrit du code en mode html, celui-ci est transformé par TinyMCE lorsqu'on clique sur "Mettre à jour". Est-il possible de désactiver cette protection de l'éditeur? Merci. Cordialement.
-
Hola a tod@s, Hoy queremos compartir con la comunidad algo tan sencillo como añadir el editor de textos TinyMCE a tu módulo en Prestashop 1.6 utilizando HelperForm. Esto es algo muy sencillo, pero la documentación que hemos visto por internet está obsoleta o incluso es errónea, así que vamos a aclararlo de una forma muy sencilla y fácil. Este es el objetivo que queremos obtener: Para esto, sólo debemos de añadir estas 2 líneas de código a nuestro input textarea: 'tinymce' => true, Y también: 'autoload_rte' => true, De tal forma que nuestro HelperForm quedaría algo así: $fields_form = array( 'form' => array( 'tinymce' => true, 'legend' => array( 'title' => $this->l('Settings'), 'icon' => 'icon-cogs' ), 'input' => array( array( /* INPUT TYPE TEXT */ 'type' => 'text', 'label' => $this->l('Title'), 'name' => 'input_title', 'id' => 'input_title', 'required' => true, 'desc' => $this->l('Insert your title here').'.', 'hint' => $this->l('Invalid characters:').' <>;=#{}\/', 'is_bool' => false, 'lang' => true, ), array( /* INPUT TYPE TEXTAREA */ 'type' => 'textarea', 'label' => $this->l('Insert your text'), 'name' => 'input_text', 'id' => 'input_text', 'autoload_rte' => true, 'required' => true, 'desc' => $this->l('Insert your SEO text here').'.', 'hint' => $this->l('Invalid characters:').' <>;=#{}\/', 'is_bool' => false, 'lang' => true, ), ), 'submit' => array( 'title' => $this->l('Save'), 'class' => 'btn btn-default pull-right', ), ), ); Con esto ya tendrías tu Editor de texto TinyMCE en tu módulo. Esperamos que les haya sido de utilidad, no duden en comentar. Un saludo.
-
Hello, I need a help with two things (using prestashop 1.6): 1. How to make work the tweak of making extnded tinymce editor in 1.6 version allowing putting code into cms pages (related link source: http://mypresta.eu/en/art/know-how/tinymce-editor-full-options-all-html-tags.html) Is there a way to make it work in 1.6 ? I tried to use the hints and tutrial but it not working ... 2. Forms in custom CMS page ..... I looked through the form but did not find a comprehensive guide a quick help. I need to add custom form in a cms page ...... Can sb help me and show where to put the code and validiation ......a) html form code -> ? where php/ajax sending function and validtaion function ? Maybe there is a better way to do it in 1.6v ? Thanks in advance for help. Kindest Regards
- 35 replies
-
- prestashop 1.6
- forms
-
(and 2 more)
Tagged with:
-
Hi, I've managed to have the TinyMCE attached to the CMS Category and when I use it to format the text it works fine. However when I save the page, nothing is saved : the formatting doesn't show on the frontend and if I edit back the cms category page, although TinyMCE is still there, the formatting is reset. Has anyone put in place TinyCME for the CMS category description or would know what to correct for the formatting to be saved? Thanks
-
Hello! I have a module named Newsletter 1.4:newsletter_v1.4.zip. But after installing the module tab and loggining into backoffice the Newsletter show a textarea and i need that show a TinyMCE, (sorry my bad english), any help to put TinyMCE into this textarea? Installing NewsLetter Module:
- 3 replies
-
- Newsletter
- textarea
-
(and 3 more)
Tagged with:
-
Witam Wykonałem konfigurację wg. artykułu: "Prestashop TinyMCE editor full options + all html tags support", ale edytor nadal nie zapisuje, np. atrybytu rel="galeria1" dla znacznika <a>. Gdzie może tkwić problem? Mam wersję 1.6 zrobiłem też http://mypresta.eu/en/art/prestashop-16/extended-rich-text-editor.html ale nadal mam ten sam problem.
-
Hello All, Recently I observed that in my Prestashop 1.5.6 version TinyMCE disappeared in all Products, Categories and CMS modules. Screen shot attached and below is the error I get in debug mode. I have not done any changes since a long time, but I don't know why. I have done all research as defined in previous topics but none has helped. Pls help Error in debug mode: Attr.specified is deprecated. Its value is always true. jquery-1.7.2.min.js:2 Uncaught ReferenceError: tinyMCE is not defined tinymce.inc.js:41 tinySetup tinymce.inc.js:41 (anonymous function) index.php?controller=AdminProducts&id_product=11&updateproduct&token=6154041c28015e6a1ff7e363162ee2…:1285 ProductTabsManager.onLoad productTabsManager.js:87 (anonymous function) index.php?controller=AdminProducts&id_product=11&updateproduct&token=6154041c28015e6a1ff7e363162ee2…:1284 o jquery-1.7.2.min.js:2 p.fireWith jquery-1.7.2.min.js:2 e.extend.ready jquery-1.7.2.min.js:2 c.addEventListener.B jquery-1.7.2.min.js:2 event.returnValue is deprecated. Please use the standard event.preventDefault() instead.
- 13 replies
-
- 1
-
-
- TinyMce
- prestashop 1.5.6
-
(and 2 more)
Tagged with:
-
I've already made a module that use TinyMCE to write the description, it runs nicely, but after submission, I notice that the HTML tags from tinyMCE are not saved to the database. How to prevent the strip tags? Sorry for the bad english. Thanks
- 4 replies
-
- database
- submission
-
(and 1 more)
Tagged with:
-
Hello everybody I have a big problem. I'm trying to upload images to a CMS page, It should be easy but I can't. When I click to upload url I go to the window of CMS root images (see image below), but I can't do anything, doesn't load well. I can't copy, scroll, select image, upload, refresh, etc, nothing. I have been seen maybe is tinymce or ajaxfilemanager, but I don't know how to solve it. It's possible to install again tinymce (or other similar tool) automatically ? I think it's a basic tool and I'm little crazy now. I would appreciate any help. Thank you in advance!! Marc
-
- CMS images
- upload
-
(and 2 more)
Tagged with:
-
In my tinymce editor there is a HTML icon however when I click on it I get a blank screen and when I place code in it I can't save or place it into the tinymce editor. Thanks for your help.
-
With the new Prestashop 1.6 theme, you can now use the icon font : FontAwesome. I propose in this tutorial to install a plugin that will be displayed in the different TinyMCE text editors of your Back Office in order to facilitate the use of FontAwesome. You will then be able to take maximum advantage of FontAwesome in your products descriptions, categories descriptions, CMS pages... The tutorial is available here : http://blobmarket.com/blog/en/use-fontawesome-with-prestashop-1-6.html
- 3 replies
-
- 2
-
-
- fontawesome
- prestashop 1.6
-
(and 1 more)
Tagged with:
-
Hola, Cuando escribo código en el CMS. Al darle a guardar me cambia el código. De lo que he leído se puede desactivar la validación, pero no se como. No sé como hacer "change isCleanHtml to isAnything". Ejemplo. Quiero poner.... <ol> <h2><li>Titulo 2<h2> <p>............</p> </li> </ol> Pues no me deja y me cambia el código, me pone ul y no se que más. De todas formas es bastante irritante que te cambie el código. Sabes como hacer para que no valide el código html? Gracias,
-
Hi, On a particular CMS page backend the TinyMCe editor is not loading and this caused the enitre admin panel to freeze. This happenned when i was editing the page. I have a table in this page with text and small pictures. Now the Webpage of this CMS page has become totally misaligned and all elements have gone haywire. Please help. I am using Prestashop 1.4.6.2
-
Hi, I hope someone can help. I'm wondering why the tinyMCE editor in CMS pages is limited to only 2 lines of options (see attachment), rather than the 4 lines in the product editors. I'm specifically trying to add the selectformat option so my client can add headings without having to open the html editor. If anyone can point me in the right direction to add this feature it would be greatly appreciated. Thanks
- 67 replies
-
- CMS
- Pagecontent
-
(and 3 more)
Tagged with:
-
When you are working on a multishop environment on "All Shops" all fields on the product admin page should be deactivated aka. disabled. For editing you have to tick the checkbox next to it to activate / enable it. That is a great feature, but it doesn't work on TinyMCE fields on our shop. What happens here: After the page product admin page is loaded all fields are disabled the TinyMCE editor appears and stays enabled. I am able to change the content of the description field and even press the 'save and stay' button. BUT: the content is not saved. This is really confusing for our users. When I click twice on the checkbox the TinyMCE textarea gets deactivated as it should be in the first place. Anybody else with this problem? I think it's a bug, but maybe only a problem on our installation? V1.6.0.9 Thanks
-
Bonjour à tous ! Je rencontre un problème concernant l'éditeur de texte TinyMCE en multi-boutique. Je ne suis apparemment pas le seul car j'ai trouvé un post sur le forum anglais qui parlait de l'exact même problème. (le voici) https://www.prestashop.com/forums/topic/372838-tinymce-field-on-product-admin-page-is-enabled-in-multishop-environment/?hl=%2Bcheckbox+%2Bdescription Malheureusement pour moi, personne n'a jamais répondu. Puisqu'il date du 24 octobre 2014, je doute que quelqu'un le fasse un jour. J'explique le problème (attention, va falloir être concentré ): Dans le BO, lorsque l'on va dans Catalogue > Produit et que l'on édite un produit en étant dans "Toutes les boutiques", l'éditeur de Texte TinyMCE (du champ description par exemple) semble actif, on peut écrire dedans, faire tout ce qu'on y veut MAIS rien n'est sauvegardé en BDD lorsqu'on enregistre. Pour le rendre actif, il faut cliquer sur la checkbox juste à côté. A ce moment là, rien ne change en affichage mais cette fois ci, si on édite le champ et que l'on enregistre, cela enregistre bien les modifications. On peut remarquer que si l'on clique 2 fois sur la checkbox, alors l'éditeur de texte s'active puis se désactive (logique) MAIS on voit clairement qu'il est impossible de faire la modification du champ (il devient grisé et on ne peut plus y accéder). Donc pour cibler le problème: lorsque j'arrive sur ma page d'édition de produit en mode "Toutes les boutiques", les éditeurs de texte TinyMCE devraient être désactivés ET avoir l'affichage qui va avec mais pour le moment il y a l'affichage comme s'ils étaient actifs mais ne le sont pas, ce qui déstabilise grandement les utilisateurs. Voici des captures d'écran afin que vous puissiez voir par vous mêmes. Chaque capture représente 1 état du problème. Le premier est l'état initial (textarea désactivée mais avec l'affichage activé), le deuxième est l'état avec avoir cliqué sur la checkbox qui active l'éditeur de texte (textarea activée et affichage activé) et le troisième état est celui après avoir encore cliqué sur la checkbox (textarea désactivée et affichage désactivé). En espérant que mon texte soit compréhensible et que quelqu'un puisse m'aider. Merci d'avance ! Ikompagwec PS: Je suis en 1.6.0.5.
-
Hi everyone! I've just made a migration of my prestashop website from a server A to a server B. All went good. Except for one point: All my images added via tinyMCE Rich Text Editor, (example in my manufacturer description) are still related to my server A! Links to my images seems to be hard coded, with http://tomyserverA.com adress. So, every images in it must be charged from my old server, many http requests, many loading time etc... So the question are: How can i make relative adresses in tinyMCE ? And how can i update all my already tranfered info to point on my actual server? I actually have all images duplicated on my new server, but links aren't just good. Any help appreciated. Thanks !
-
Bonjour, Je voudrais ajouter des boutons non listés à tinyMCE coté Admin. J'ai réussi à le faire pour la partie CMS, mais je ne trouve pas pour la partie fiche produit et autres pages coté admin. Pour la partie CMS, j'ai un form.tpl placé dans : Override\controllers\admin\templates\cms\helpers\form\form.tpl Je suis incapable de vous dire comment il est arrivé là, sûrement une modif que j'avais faite y'a un petit moment... Je ne comprend pas comment mais bon ça marche, en revanche quand je suis la logique de ce premier, j'ai un soucis puisque je ne trouve pas de fichier controllers\admin\templates\products\helpers\form\form.tpl Un coup de main svp ^^