There are collapsed areas on the form that I would like to get too, and there is even a blank one! Cheers...

Comments

halmsx’s picture

having same problem. only comment and node tabs are editable. the rest are just plain texts.

halmsx’s picture

also, the admin link is also not shown in the admin > config page.

instead. i had to go to admin > modules > tabtaber > config to access the admin page for tabtamer.

Louis Bob’s picture

Priority: Normal » Major

Yes same issues here.
Would that be related to the error message I have every time I activate the module ?

Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 35122 bytes) in [...]/includes/database/database.inc on line 2135

halmsx’s picture

ive no such errors. and ive increased memory, still the same.

coreyp_1’s picture

This error would not be related in any way to the memory error you are reporting.

Louis Bob, this error shows that your memory limit is only 64M. You are evidently using more than 64M when you try to enable Tab Tamer. It is not a problem with Tab Tamer, but that your particular installation has a lot of other modules installed, too, which is contributing to the problem. You should either increase your PHP memory limit or use fewer modules.

Has anyone seen this problem in the D6 version? I don't think I have. D7 has a markedly different menu structure under the hood, so it may be just some of the kinks we need to work out.

Louis Bob’s picture

Yes thank-you, you are right, I have increased the memory limit, still the same issue.
So I'm waiting for this issue to be fixed now :)

7wonders’s picture

I have the same issue, it appears to be related to Search tabs. Looking at the html in firebug it looks like this:

<fieldset id="edit-messages" class="collapsible collapsed form-wrapper collapse-processed">
<fieldset id="edit-" class="collapsible collapsed form-wrapper collapse-processed">
<fieldset id="edit-taxonomyterm" class="collapsible collapsed form-wrapper collapse-processed">

And opening that fieldset for me reveals (I think the 2 is related so using searchapi):

<div class="fieldset-wrapper">
<fieldset id="edit-searchnode" class="collapsible form-wrapper collapse-processed">
<fieldset id="edit-searchuser--2" class="collapsible form-wrapper collapse-processed">
<fieldset id="edit-searchnode--2" class="collapsible form-wrapper collapse-processed">
<fieldset id="edit-searchuser" class="collapsible form-wrapper collapse-processed">
</div>
</fieldset>

So why is it not picking up on the search fieldset properly? Is it the same for the others above? You can check by simply right clicking and inspect with firebug.

7wonders’s picture

As a workaround to access the other options in the meantime (including search) I changed line 215 in tabtamer.admin.inc to " #collapsed' => FALSE,

Makes the page a bit longer but at least you can access all the settings :)

davidcsonka’s picture

StatusFileSize
new7.23 KB

I have the same problem as halmsx, only the comment and node tabs are editable.

The rest of the sections (like user) are just plain text, and cannot be expanded.

davidcsonka’s picture

I can also confirm that 7wonders solution works.

However, for me the code edit needed to occur in the tabtamer.module file, at line 309.

morf2009’s picture

+1 having same issue, can i help you somehow to fix it?

bobslee’s picture

The attached patch fixes this issue.
Patch against 7.x-1.x 29eb789.

Always clear the cache after anything you do with tabtamer (also with patching).

srsbl’s picture

Status: Active » Closed (fixed)

Using 7.x-1.x-dev, issue is no longer present.

srsbl’s picture

Status: Closed (fixed) » Needs review

Using 7.x-1.x-dev seemed to work at first, but the issue returned. Applying the patch above worked for me.

zengenuity’s picture

Using the patch with 7.x-1.x-dev works for me to fix this issue. It would be great to get this put into a release. I'm adding tab-related functionality to Menu Badges and I would like to use your interface. I can add instructions, but most users can't handle patching modules.

Anonymous’s picture

Version: 7.x-1.0 » 7.x-1.x-dev
Status: Needs review » Needs work

Ok, the patch fixes some things, and is a good patch. But the admin form is still messed up. The weights drag/drop tables have changed into fieldsets for some reason. Will try to fix that soon. It looks as if the 'draggable' CSS class is not output somehow messing up the draggable JS.

Anonymous’s picture

Status: Needs work » Needs review
StatusFileSize
new1.73 KB

Attached a full patch with solution! (Includes patch from #12 - thank you very much!)

Please feedback and will commit. Problem was that I had moved tabtamer_theme() to tabtamer.admin.inc, so Drupal could not find it because it looks in .module files for hook_theme() functions.

Anonymous’s picture

Status: Needs review » Fixed

I actually went ahead and patched this up. The patch works. Will make a new 7.x-1.2 release soon.
http://drupalcode.org/project/tabtamer.git/commit/52b115c

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

mariogodiva’s picture

Understanding how to apply a patch looks very intimidating to a drupal newbie. Is there any other way to get the user menu's to link besides adding the patch?

Infoloko’s picture

any progress on the 7.x-1.2 release?