HI All
I am having an issue where an editor level user is getting a 404 when trying to view an image. I'm an admin (super admin on network) and I am able to see the file at the URL.
We are on a network install, but the plugin is installed on a per site basis.
Everything else about GF appears to be working but this.
We are not using any special permissions plugins. Straight forward WP user levels.
We did give editors access via this hook
function add_grav_forms(){
$role = get_role('editor');
$role->add_cap('gform_full_access');
}
add_action('admin_init','add_grav_forms');
thanks for all help you'll be giving :) (hopefully!)