we're trying to use the note feature on the forms.
we enter our notes and click "add note". the page reloads and the note is gone.
Attempted to resolve by uninstalling the plugin and reinstalling to the latest version...
i'm thinking it may have something to do with my adjusted user capabilities:
add_action( 'admin_init', 'remove_difficult_menus');
function remove_difficult_menus() {
remove_submenu_page('themes.php', 'theme-editor.php' );
//remove_menu_page('tools.php'); // this breaks form exports
remove_role('basic_contributor');
$role = add_role( 'basic_contributor', 'Basic Contributor' );
$role->add_cap('gravityforms_view_entries');
$role->add_cap('read');
//$role->add_cap('edit_posts');
//$role->add_cap('delete_posts');
$role->add_cap('gravityforms_edit_entry_notes');
$role->add_cap('gravityforms_view_entry_notes');
$role->add_cap('gravityforms_export_entries');
//wp_get_current_user()->add_role('gform_full_access');
}
interestingly, i can't even save notes as an administrator....
perhaps there is some other capability i'm missing? i dont see anything on the roles/capabilities documentation that i'm missing: http://www.gravityhelp.com/documentation/page/Role_Management