Hey there,
your plugin is so far the easiest to attach a user to a certain taxonmy term, in my case, event venues they can manage. However, would it be possible to add the option to have an option to manage different taxonomies with it, not only pick one? I.e. I want users to only post to a certain venue _and_ event category. So far, which already helps a lot, only either the venue _or_ event category can be restricted.
Thanks a lot in advance!
physalis
]]>Hi, great plugin.
I found that the call for the javascript has not been properly enqueued and causes conflicts with other plugins.
So I made some changes to the plugin and now it works fine. Wanted to share those changes with you, so you can implement them (and show that the plugin is still in active development, hahaha).
change function butc_script() into:
function butc_script() {
if (!isset($_GET['page']) || !$_GET['page'] == "bind-user.php") return;
wp_enqueue_script('bind-user.js');
}
Then change the add_action to that function into:
add_action('init', 'butc_script');
One more thing:
I was trying to bind multiple taxonomies to a user as I would like to bind a category as well as a custom taxonomy to a user. As it turns out, your plugin only remembers the last input. Would it be possible to change the plugin so it does the trick for more than one taxonomies?
Welcome on this support page
]]>