Vấn đề này đã được giải quyết trong dev (7.x-2.3 khi được xuất bản) như là một phần của CKeditor 4.1 ACF . Bạn có thể thử nâng cấp WYSIWYG của mình hoặc thử các cách giải quyết dưới đây.
Trong Drupal 7, bạn có thể thử hook sau:
<?php
/**
* Implements hook_wysiwyg_editor_settings_alter().
*/
function MYMODULE_wysiwyg_editor_settings_alter(&$settings, $context) {
if ($context['profile']->editor == 'ckeditor') {
$settings['allowedContent'] = TRUE;
}
}
?>
hoặc bằng cách sử dụng một số ý tưởng khác:
<?php
/**
* Implements hook_wysiwyg_editor_settings_alter().
*/
function MYMODULE_wysiwyg_editor_settings_alter(&$settings, $context) {
if ($context['profile']->editor == 'ckeditor') {
$settings['extraAllowedContent'] = array(
'img[src,title,alt,style,width,height,class,hspace,vspace,view_mode,format,fid]',
);
}
}
?>
hoặc với mã jQuery sau:
CKEDITOR.replace( textarea_id, {
allowedContent: true
} );
Liên quan: