Adding Custom User Roles from Other Plugin including WooCommerce

User roles settings can be set at admin settings page to allow specific user groups to access Super Store Finder which more details available in this article. If you’re using custom user role plugins or WooCommerce user roles to be able to access Super Store Finder, you can edit this file at {plugin_folder}/ssf-wp-inc/includes/settings-options.php

Search for the following code / keyword

$user_role_settings["".__("Editor", SSF_WP_TEXT_DOMAIN).""]="editor";

Add this line of code right after (just switch out the role name and role ID)

For example:

$user_role_settings["".__("Shop Manager", SSF_WP_TEXT_DOMAIN).""]="shop_manager";

Contributed by user5599

1+