Bug #80326
closedLink class from RTE gets lost
0%
Description
Though it is correctly saved the lib.parseFunc_RTE.tags.a.typolink
gets rid of my custom set class.
I use a quite easy setup with fsc in Typo3 V8.6. I can add classes (used both htmlarea and ckeditor) and use them in frontend. But link classes get stripped in the frontend. While it remains visible in the backend editor, it does not survive rendering to frontend.
The problem is located somewhere in here:lib.parseFunc_RTE.tags.a
Let me know if I can clarify things. I maintain a ton of typo3 pages and this hasn't been a problem since v8
Updated by Andrii Valkiv over 7 years ago
The issue meets because of typolink configuration. TypoScript for <a> tag is wrong. Instead of
lib.parseFunc_RTE.tags.a.typolink.aTagParams.data = parameters:allParams
it must be
lib.parseFunc_RTE.tags.a.typolink.ATagParams.data = parameters:allParams
So aTagParams is not correctly written. It must be ATagParams. Just change it in your TypoScript for temporary solution and it'll work like a charm. But of course it should be fixed fluid_styled_content extension.
Updated by Harald Krischner over 7 years ago
Andrii Valkiv wrote:
So aTagParams is not correctly written. It must be ATagParams. Just change it in your TypoScript for temporary solution and it'll work like a charm. But of course it should be fixed fluid_styled_content extension.
Thanks for your help, your temp solution works fine.
Updated by Riccardo De Contardi over 7 years ago
- Status changed from New to Closed
thank you for testing. I close it.