Hi @dacgarz
Thank you for reaching out and we apologize for the confusion.
Please note that the “Can See Submission data” allows you to select from a list of WordPress Capabilities, generally speaking, we wouldn’t recommend changing that setting unless you are aware of how each one works.
In the future, we will look into showing a warning when attempting to change to a capability that isn’t currently assigned to your user.
But for now, you can bypass your current settings, and force the “manage_options” capability, by using the below custom code.
// Force to use "manage_options" capability for "Can See Submission data" option in the WP Mail Logging plugin.
add_filter( "option_wpml_settings", function ( $value ) {
if ( is_array( $value ) ) {
$value['can-see-submission-data'] = 'manage_options';
}
return $value;
} );
With this code snippet you will not be able to change the “Can See Submission data” setting. To be able to do that you will need to insert this code snippet, enable the “Cleanup” setting, reinstall the plugin, and remove the code snippet.
In case it helps, here’s a tutorial with the most common ways to add custom code like this: https://www.wpbeginner.com/beginners-guide/beginners-guide-to-pasting-snippets-from-the-web-into-wordpress/.
For the most beginner-friendly option in the guide above, I’d recommend using the WPCode plugin: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/. This will protect your code from updates and keep it easy to manage right within your WordPress admin area.