Este problema se ha resuelto en dev (7.x-2.3 cuando se publica) como parte de CKeditor 4.1 ACF . Puede intentar actualizar su WYSIWYG o probar las soluciones a continuación.
En Drupal 7 puedes probar el siguiente gancho:
<?php
/**
* Implements hook_wysiwyg_editor_settings_alter().
*/
function MYMODULE_wysiwyg_editor_settings_alter(&$settings, $context) {
if ($context['profile']->editor == 'ckeditor') {
$settings['allowedContent'] = TRUE;
}
}
?>
o usando alguna otra idea:
<?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]',
);
}
}
?>
o con el siguiente código jQuery:
CKEDITOR.replace( textarea_id, {
allowedContent: true
} );
Relacionado: