Re: Support Thread for CKEditor Plugin for Zen Cart - VIDEO AUTOPLAY
Quote:
Originally Posted by
ShopVille
Bump? oops message is too short...
That is default CKEditor behaviour, it strips anything that is not html
Re: Support Thread for CKEditor Plugin for Zen Cart - VIDEO AUTOPLAY
Quote:
Originally Posted by
Design75
That is default CKEditor behaviour, it strips anything that is not html
Any fix or alternative?
(older version didn't do that?!)
Re: Support Thread for CKEditor Plugin for Zen Cart - VIDEO AUTOPLAY
Quote:
Originally Posted by
ShopVille
Any fix or alternative?
(older version didn't do that?!)
I don't know.You may want to check the CKeditor site
Re: Support Thread for CKEditor Plugin
Quote:
Originally Posted by
ShopVille
Quote:
Originally Posted by
ShopVille
I noticed the lastest update i sstripping js, any fix?
Bump?
Not sure I understand what it is you're trying to do.
By "older version didn't", which specific older version are you referring to exactly?
Re: Support Thread for CKEditor Plugin for Zen Cart - VIDEO AUTOPLAY
Quote:
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';
};
Re: Support Thread for CKEditor Plugin for Zen Cart - VIDEO AUTOPLAY
Quote:
Originally Posted by
ShopVille
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';
};
DrByte has posted an updated version, available here: http://www.zen-cart.com/downloads.php?do=file&id=1098
Re: Support Thread for CKEditor Plugin for Zen Cart - VIDEO AUTOPLAY
Quote:
Originally Posted by
frank18
Does it address this issue?
Re: Support Thread for CKEditor Plugin for Zen Cart - VIDEO AUTOPLAY
Hi All,
I'm thinking this is a simple fix, I just don't know where to look. I have ckeditor on several sites, all have the same issue. But the site I'm working on now is a fresh install of ZC154. I have added (in this order):
• Backup mySQL
• Template
• ckeditor
• IH4
• colorbox
HERE IS THE PROBLEM:
When editing a page in ck, images show as broken links, though they look fine on the store.
If I look at SOURCE and then add "http://mysite.com/", the image shows up fine. So it's just when it looks for an image that is relative (not specifically mapped). My stores are all contained on mysite.com, not mysite.com/store.
Anybody know how to fix this?
Thanks!
Re: Support Thread for CKEditor Plugin for Zen Cart - VIDEO AUTOPLAY
try adding a / in front of the relative path.
So it becomes something like /images/your_mage.jpg
Re: Support Thread for CKEditor Plugin
Yaaaay Design75!
:clap::clap::clap:
Man, how dumb!!! Thank you!