ปัญหานี้ได้รับการแก้ไขใน dev (7.x-2.3 เมื่อเผยแพร่) เป็นส่วนหนึ่งของCKEditor 4.1 ACF คุณอาจลองอัปเกรด WYSIWYG ของคุณหรือลองแก้ไขปัญหาด้านล่าง
ใน Drupal 7 คุณสามารถลองเบ็ดต่อไปนี้:
<?php
/**
* Implements hook_wysiwyg_editor_settings_alter().
*/
function MYMODULE_wysiwyg_editor_settings_alter(&$settings, $context) {
if ($context['profile']->editor == 'ckeditor') {
$settings['allowedContent'] = TRUE;
}
}
?>
หรือโดยใช้แนวคิดอื่น:
<?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]',
);
}
}
?>
หรือด้วยรหัส jQuery ต่อไปนี้:
CKEDITOR.replace( textarea_id, {
allowedContent: true
} );
ที่เกี่ยวข้อง: