Hi Pablo. Can you please take a look at the last comment with solution from "mixextra". Wonder if you can have a better (simpler) solution for making the fonts that you add to the menu work? See:
https://www.wysiwygwebbuilder.com/forum ... 86#p476686
Gracias
Solution for making fonts work with Summernote and CMS
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/cms_tools.html
A lot of information about the Content Manager System can be found in the help/manual. Please read this first before posting any questions! Also check out the demo template that is include with the software.
CMS trouble shooting / FAQ:
viewtopic.php?f=10&t=43245
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/cms_tools.html
A lot of information about the Content Manager System can be found in the help/manual. Please read this first before posting any questions! Also check out the demo template that is include with the software.
CMS trouble shooting / FAQ:
viewtopic.php?f=10&t=43245
Re: Solution for making fonts work with Summernote and CMS
Sorry, I do not have an easier solution.
Re: Solution for making fonts work with Summernote and CMS
Ok... tnx for answering Pablo. Will see were I take it from here. Seams a little hard for a "non-coder" like meBluesman wrote: ↑Mon Aug 22, 2022 5:08 pm Hi Pablo. Can you please take a look at the last comment with solution from "mixextra". Wonder if you can have a better (simpler) solution for making the fonts that you add to the menu work? See:
https://www.wysiwygwebbuilder.com/forum ... 86#p476686
Gracias
![Rolling Eyes :roll:](./images/smilies/icon_rolleyes.gif)
Re: Solution for making fonts work with Summernote and CMS
Hello Pablo greetings,
please try to see if the given code is not in conflict with the php code of the wwb elements of cms tools (CMS Admin, and EditableContentAdmin and others), whether it is possible to include this code in a future update:
directly into the php code of cms tools elements
or
as an option in the properties inspector as an optional editing field in case it is necessary in the future for another EDITOR to modify the output stored in the database?
With the Summernote editor, this is an invalid character in the output """
With this output, the use of the Summernote editor is very limited.
We thank you.
please try to see if the given code is not in conflict with the php code of the wwb elements of cms tools (CMS Admin, and EditableContentAdmin and others), whether it is possible to include this code in a future update:
Code: Select all
$content = str_replace('"', "'", $content);
or
as an option in the properties inspector as an optional editing field in case it is necessary in the future for another EDITOR to modify the output stored in the database?
With the Summernote editor, this is an invalid character in the output """
With this output, the use of the Summernote editor is very limited.
We thank you.
Re: Solution for making fonts work with Summernote and CMS
Thanks, I will add this in the next update.
Re: Solution for making fonts work with Summernote and CMS
Thanks Pablo, will test this amediately
![Very Happy :D](./images/smilies/icon_biggrin.gif)
Ok tested!!! Yes works as a charm
![Very Happy :D](./images/smilies/icon_biggrin.gif)
Last edited by Bluesman on Fri Aug 26, 2022 3:03 pm, edited 1 time in total.
Re: Solution for making fonts work with Summernote and CMS
Pablo did it tnx to you... Gracias amigo!mixextra wrote: ↑Thu Aug 25, 2022 5:04 pm Hello Pablo greetings,
please try to see if the given code is not in conflict with the php code of the wwb elements of cms tools (CMS Admin, and EditableContentAdmin and others), whether it is possible to include this code in a future update:directly into the php code of cms tools elementsCode: Select all
$content = str_replace('"', "'", $content);
or
as an option in the properties inspector as an optional editing field in case it is necessary in the future for another EDITOR to modify the output stored in the database?
With the Summernote editor, this is an invalid character in the output """
With this output, the use of the Summernote editor is very limited.
We thank you.