Hey guys,
first: Great plugin, i am just playing around with it and will launch it on my live site soon!
I've found out, that subscribers can see the "Tickets" Menu in the wp-admin. The only thing i did is giving the subscribers the capabilities with this code snippet below:
function add_theme_caps() {
// gets the author role
$role = get_role( 'subscriber' );
$role->add_cap('view_ticket');
$role->add_cap('create_ticket');
$role->add_cap('close_ticket');
$role->add_cap('reply_ticket');
$role->add_cap('attach_files');
}
add_action( 'admin_init', 'add_theme_caps');
I also tried this on a fresh installation with the same results.
Screenshot:
https://www.dropbox.com/s/4jtyjrdpoljhglo/awesomesupport.png?dl=0
Best,
David
