Este problema foi resolvido no dev (7.x-2.3 quando publicado) como parte do CKeditor 4.1 ACF . Você pode tentar atualizar seu WYSIWYG ou tentar as soluções alternativas abaixo.
No Drupal 7, você pode tentar o seguinte gancho:
<?php
/**
* Implements hook_wysiwyg_editor_settings_alter().
*/
function MYMODULE_wysiwyg_editor_settings_alter(&$settings, $context) {
if ($context['profile']->editor == 'ckeditor') {
$settings['allowedContent'] = TRUE;
}
}
?>
ou usando outra idéia:
<?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]',
);
}
}
?>
ou com o seguinte código jQuery:
CKEDITOR.replace( textarea_id, {
allowedContent: true
} );
Relacionado: