[ad_1]
Hello @jairoochoa,
I believe you are referring to the Login Access functionality in our plugin. If this is indeed the case, you can actually remove multiple IP addresses using the (-) button before confirming the changes.
If you wish to delete all IP addresses at once from the Login Access list, you can easily do that by adding the following filter to the functions.php file of the active theme:
add_action( 'init', 'remove_login_access_data' );
function remove_login_access_data() {
update_option( 'sg_login_access', array() );
}
Keep in mind that this will permanently delete all IP addresses and they will not appear back once the filter is removed.
