
Originally Posted by
ShopVille
I noticed the lastest update i sstripping js, any fix?
For anyone searching for the solution this worked for me add the following line
Code:
config.extraAllowedContent = 'p(*)[*]{*};div[id]';
To
/editors/ckeditor/config.js
My config.js file looks like this:
Code:
/**
* @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config ) {
config.extraAllowedContent = 'p(*)[*]{*};div[id]';
// Define changes to default configuration here. For example:
// config.language = 'fr';
// config.uiColor = '#AADC6E';
};