Closed (duplicate)
Project:
Rubik
Version:
7.x-4.0-beta8
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
28 Sep 2012 at 19:46 UTC
Updated:
10 Nov 2013 at 08:18 UTC
Jump to comment: Most recent
Comments
Comment #1
davidwhthomas commentedYup, same problem here, maybe something to do with the fieldset ids, though that earlier patch has been applied, issue persists.
Comment #2
davidwhthomas commentedAs a workaround, I used firebug / dom inspector and could locate the hidden div with the form that I needed on the taxonomy manager vocab term page.
I could then remove the "display:none;" css style to reveal it.
It's manual without the js interaction, but the form submitted ok, and I could add multiple terms via textarea.
hth,
DT
Comment #3
jordiserratosa commentedI use this little snippet to make the workflow easier... It's not a good solution but simplifies the firebug/dom insepector solution.
// Taxonomy manager issue "solution"
$('#taxonomy-manager-toolbar-buttons input[class]').each(function() {
$(this).click(function() {
var classes = $(this).attr("class").split(" ");
$('#taxonomy-manager-form').find('#edit-'+classes[1]).removeAttr('style');
});
});
Added at rubik.js file
Comment #4
haydeniv commentedThis is a duplicate of #1016844: Taxonomy Manager broken - incompatibility with Tao based themes (like Rubik) which has been fixed in Tao so I'm closing this one.