यह समस्या देव (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
} );
सम्बंधित: