Opened 11 years ago
Closed 11 years ago
#12397 closed Bug (invalid)
removes <ins> Tag even with allowedContent=true
Reported by: | robin | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: |
Description
Ckeditor removes <ins></ins> tags even with the config.allowedContent=true
Tag in question is Google Adsense's tag. Exemple : <ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-4376438685023602" data-ad-slot="3327144465"></ins>
Sometimes it isn't deleted but in most of times it is deleted when passing from source mode to "visual" mode.
Exemple #1 :
- in source mode, paste :
<ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-4376438685023602" data-ad-slot="3327144465"></ins>
- it deleted after passing to visual mode.
Change History (2)
comment:1 Changed 11 years ago by
comment:2 Changed 11 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Version: | 4.4.3 |
Editor removes empty inline tags regardless of ACF, because empty inline tags are not editable, so they are not valid for purpose of editing.
You can remove ins
tag from http://docs.ckeditor.com/#!/api/CKEDITOR.dtd-property-S-removeEmpty to prevent this. You'll find many solutions in Google.
It seems to not be deleted if there is something between <ins> and </ins>.
Exemple : <ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-4376438685023602" data-ad-slot="3327144465"> </ins>