GetSimple Support Forum

Full Version: [SOLVED] CKEditor <a href ... title="Gone?">
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello friend,
I'm still using FancyBox plugin and after GS update from 3.1.2 to 3.2(.1), I occurred a little problem.

In CKEditor there is a bit less options. It doesn't matter, it's batter this way, the most of them were useless anyway.

However, there is missing the title attribute of the <a></a> tag! I'm not sure if this was made for reason, but I think that this is really commonly-used attribute which shouldn't be missing there.
Furthermore, I can't give titles to gallery pictures.

You can see the difference in my screenshot:
[Image: 30k3skm.png]

How can I put it there back? I looked at the wiki but I haven't found what I need - adding this column or changing the "name" column to "title" column Smile

Thanks for any help.

By the way, what I tried is copying the CKEditor from 3.1.2 to my 3.2.1 version, it works, but why should I use anything older? I prefer the newer version of the CKEditor, just this little thing disappointed me.

Thank you.

Tom
I am pretty sure this change was made in a 3.1 version.
Just modify the config.js to readd the functionality.

ckeditor version has not changed since like 3.0
(2013-04-30, 05:37:24)shawn_a Wrote: [ -> ]I am pretty sure this change was made in a 3.1 version.
Just modify the config.js to readd the functionality.

ckeditor version has not changed since like 3.0
Wow, that was pretty easy. Even easier than I ever thought it could ever be Big Grin

I just had to delete line 27:
Code:
            advTab.remove( 'advTitle' );
A piece of cake, thank you very much Smile

Btw, when I see how easy it is to hide what I don't need, could you please tell me the names of the fields to delete them? It would be awesome.

Thanks again.
I have no idea.
(2013-04-30, 06:00:13)shawn_a Wrote: [ -> ]I have no idea.
Never mind, you helped me as I needed, I really appreciate that. Thank you Shawn.

If there is someone who knows the names, I would like that, but it's not as necessary as the title was.
TeeJay,

CKEditor is thirdparty-Software and it has its own documentation:

http://docs.ckeditor.com/
(2013-04-30, 16:27:12)Connie Wrote: [ -> ]TeeJay,

CKEditor is thirdparty-Software and it has its own documentation:

http://docs.ckeditor.com/
Cheers Connie Smile

I have to admit that the information there is pretty deep and covers everything. So many things that you can't even find what you are looking for there... but Google helped me find that, so I added the lines below and I have what I need - just ID, Title and Rel.
Code:
advTab.remove( 'advTabIndex');
advTab.remove( 'advCSSClasses');
advTab.remove( 'advAccessKey');
advTab.remove( 'advStyles');
advTab.remove( 'advName');

Thanks for you assist Smile