I can use the module as admin but don't get access for any other user role. it seems the module uses the standard permissions right? as those users are able to use the standard term administration I suspect a permissions issue here?

Comments

codenamerhubarb’s picture

I had the same issue but was able to fix it by changing line 10 of manage_multiple_terms.module from:

'access arguments' => array('administer'),
to
'access arguments' => array('administer taxonomy'),

and making sure my user role has the "Administer vocabularies and terms" permission checked.