Hi,

I use wysiwyg 6.x-2.1, IMCE 6.x-1.3, IMCE Wysiwyg API 6.x-1.1 and CKEditor, this works great. Unfortunately on one of our websites when I want to add an image to my content and I browse server (IMCE) I do not see delete and resize buttons, they are not appearing at all, I uninstalled all three modules, removed their module files including CKEditor. I re uploaded the module files, installed them and created a profile for full HTML mode. Ah! its still not appearing.

Please suggest what could be wrong with this setup? The same is working great with other websites, I can resize and delete images that I upload using CKEditor.

Please advise what can I do to fix it, my content uses many images and it will b difficult to use them without resizing within the editor.

Regards

Comments

I am learning’s picture

Done, got it back, it was the theme, nothing else. I'm using Jaded theme and there are many themes and modules IMCE do not gel with, Jaded is one of them.

Add the following line in your template.php YOURTHEMENAME_button function

if (arg(0) == 'imce') return theme_button($element);

Fix to my problem:
in template.php of my theme

function jaded_button($element) {
//Add the following to get back the resize and delete button. ;-)
if (arg(0) == 'imce') return theme_button($element);
nicothezulu’s picture

i have no delete and resize button after this modif. :S

Anyone has a solution?

I am learning’s picture

Change your theme to garland or one of the defaults. If it works then the problem is with your theme and you can try:
Add the following line in your template.php YOURTHEMENAME_button function

if (arg(0) == 'imce') return theme_button($element);

see the complete post above yours.

kappaluppa’s picture

When I added it the buttons for login, panels, nodes for edit, delete, finish, etc. all went away.
Any idea why this would happen?

anrkaid’s picture

I have the same issue, when i add _button function.
Looks like problem located exactly in used theme's template.php, in my case, this was phptemplate_fieldset($element) function, i commented it out, after that "delete" and "resize" buttons appears.