Title: Remove Dummy Option
Last modified: February 14, 2020

---

# Remove Dummy Option

 *  Resolved [implemagician](https://wordpress.org/support/users/implemagician/)
 * (@implemagician)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/remove-dummy-option/)
 * How can I remove the dummy option so it’s not available as an option?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Kaspars](https://wordpress.org/support/users/kasparsd/)
 * (@kasparsd)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/remove-dummy-option/#post-12500292)
 * [@implemagician](https://wordpress.org/support/users/implemagician/) That’s a
   great question. Unfortunately there is no user-friendly way of doing that until
   we introduce [plugin settings](https://github.com/WordPress/two-factor/issues/249).
 * The only way to do that currently is by using the [`two_factor_providers` filter](https://github.com/WordPress/two-factor/blob/f9394ddf3b45b64c065c9e1065d1affbce5aeba5/class-two-factor-core.php#L108):
 *     ```
       add_filter(
           'two_factor_providers',
           function ( $providers ) {
               unset( $providers['Two_Factor_Dummy'] );
   
               return $providers;
           }
       );
       ```
   
 *  Thread Starter [implemagician](https://wordpress.org/support/users/implemagician/)
 * (@implemagician)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/remove-dummy-option/#post-12509018)
 * Thanks. That works for me.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove Dummy Option’ is closed to new replies.

 * ![](https://ps.w.org/two-factor/assets/icon.svg?rev=2887448)
 * [Two Factor](https://wordpress.org/plugins/two-factor/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/two-factor/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/two-factor/)
 * [Active Topics](https://wordpress.org/support/plugin/two-factor/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/two-factor/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/two-factor/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [implemagician](https://wordpress.org/support/users/implemagician/)
 * Last activity: [6 years, 1 month ago](https://wordpress.org/support/topic/remove-dummy-option/#post-12509018)
 * Status: resolved