Title: Anthony Darter's Replies | WordPress.org

---

# Anthony Darter

  [  ](https://wordpress.org/support/users/adarter/)

 *   [Profile](https://wordpress.org/support/users/adarter/)
 *   [Topics Started](https://wordpress.org/support/users/adarter/topics/)
 *   [Replies Created](https://wordpress.org/support/users/adarter/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/adarter/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/adarter/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/adarter/engagements/)
 *   [Favorites](https://wordpress.org/support/users/adarter/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[hCaptcha for WP] Not displaying captcha for Formidable Forms](https://wordpress.org/support/topic/not-displaying-captcha-for-formiable-forms/)
 *  Thread Starter [Anthony Darter](https://wordpress.org/support/users/adarter/)
 * (@adarter)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/not-displaying-captcha-for-formiable-forms/#post-18392169)
 * **Solution:** I had to press the update button in Formidable settings (with empty
   values) before it would auto fill in the keys from hCaptcha plugin on the next
   request. Of note, the values were already empty before pressing “update”.
 * Settings URL: /wp-admin/admin.php?page=formidable-settings&t=captcha_settings
    -  This reply was modified 1 year, 3 months ago by [Anthony Darter](https://wordpress.org/support/users/adarter/).
    -  This reply was modified 1 year, 3 months ago by [Anthony Darter](https://wordpress.org/support/users/adarter/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[hCaptcha for WP] Not displaying captcha for Formidable Forms](https://wordpress.org/support/topic/not-displaying-captcha-for-formiable-forms/)
 *  Thread Starter [Anthony Darter](https://wordpress.org/support/users/adarter/)
 * (@adarter)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/not-displaying-captcha-for-formiable-forms/#post-18392078)
 * hCpatcha plugins says, “Site config is valid.” I also cleared all cache, and 
   checked the error_log.
 * — Active plugins and themes —
 * **Divi:**
   Divi Comment Form: OnDivi Contact Form: OnDivi Email Optin Form: OnDivi
   Login Form: On**Formidable Forms:**Form: On**Wordfence:**Login Form: On**WP Core:**
   Comment Form: OnLogin Form: OnLost Password Form: OnPost/Page Password Form: 
   OnRegister Form: On
 * — WordPress Configuration —
 * Version: 6.7.2
   Memory Limit: 128M
 * — WordPress Active Plugins —
 * Classic Editor: 1.6.7
   Duplicate Page: 4.5.4Font Awesome 4 Menus: 4.7.0Formidable
   Forms: 6.19Formidable Forms Pro: 6.19.1Formidable Submission Limiter: 1.0.2hCaptcha
   for WP: 4.11.0LiteSpeed Cache: 7.0.0.1MainWP Child: 5.4.0.3Smush: 3.18.0Wordfence
   Security: 8.0.4WP-Sweep: 1.1.8WP External Links: 2.62WP Mail SMTP: 4.4.0Yoast
   SEO: 24.7
 * — Webserver Configuration —
 * PHP Version: 8.1.32
   MySQL Version: 10.6.21Webserver Info: LiteSpeed
 * — PHP Configuration —
 * Memory Limit: 256M
   Upload Max Size: 64MPost Max Size: 64MUpload Max Filesize:
   64MTime Limit: 300Max Input Vars: 10000
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Error Log](https://wordpress.org/support/topic/error-log-114/)
 *  Thread Starter [Anthony Darter](https://wordpress.org/support/users/adarter/)
 * (@adarter)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/error-log-114/#post-16133208)
 * Deactivating and reactivating I get this message:
    The plugin generated 468 characters
   of unexpected output during activation. If you notice “headers already sent” 
   messages, problems with syndication feeds or other issues, try deactivating or
   removing this plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wordfence Security - Firewall, Malware Scan, and Login Security] Remove 2FA Completely](https://wordpress.org/support/topic/remove-2fa-completely/)
 *  Thread Starter [Anthony Darter](https://wordpress.org/support/users/adarter/)
 * (@adarter)
 * [4 years ago](https://wordpress.org/support/topic/remove-2fa-completely/#post-15743307)
 * **1st instance (users.php)**
    [https://i.snipboard.io/UO1lzB.jpg](https://i.snipboard.io/UO1lzB.jpg)
 * Solution:
    Add the following filters to hide Wordfence 2FA from the users table.
   It would be wise to check if the plugin is active using ‘is_plugin_active’ before
   running these filters.
 *     ```
       <?php
       add_filter( 'views_users', function ( $views ) {
           unset( $views['wfls-active'] );
           unset( $views['wfls-inactive'] );
           return $views;
       }, 999 );
       add_filter( 'manage_users_columns', function( $columns = array() ){
           unset( $columns['wfls_2fa_status'] );
           return $columns;
       }, 999 );
       add_filter( 'user_row_actions', function ( $actions ) {
           unset( $actions['wf2fa'] );
           return $actions;
       }, 999 );
       ```
   
 * **2nd instance (user-new.php)**
    [https://i.snipboard.io/1LfnlT.jpg](https://i.snipboard.io/1LfnlT.jpg)
 * Solution:
    use [admin_enqueue_scripts](https://developer.wordpress.org/reference/hooks/admin_enqueue_scripts/)
   hook to register a script file
 *     ```
       jQuery('#createuser #role').off('change');
       ```
   
 * **3rd instance (profile.php and user-edit.php)**
    [https://i.snipboard.io/o5u0z1.jpg](https://i.snipboard.io/o5u0z1.jpg)
 * Solution:
    use [admin_enqueue_scripts](https://developer.wordpress.org/reference/hooks/admin_enqueue_scripts/)
   hook to register a script file
 *     ```
       jQuery("#your-profile table:contains('Wordfence')").remove();
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wordfence Security - Firewall, Malware Scan, and Login Security] Remove 2FA Completely](https://wordpress.org/support/topic/remove-2fa-completely/)
 *  Thread Starter [Anthony Darter](https://wordpress.org/support/users/adarter/)
 * (@adarter)
 * [4 years ago](https://wordpress.org/support/topic/remove-2fa-completely/#post-15740965)
 * I currently have to do something like this
 *     ```
       // stop wordfence onChange event.
       // removes "Application passwords have been disabled by Wordfence" when the user changes the role select.
       jQuery('#createuser #role').off('change');
       ```
   
 *     ```
       // removes the table if it contins the string 'Wordfence'
       // removes 2FA Grace Period checkbox table row
       jQuery("#your-profile table:contains('Wordfence')").remove();
       ```
   
 * and it seems unreliable.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Crowdsignal Forms] Shortcodes?](https://wordpress.org/support/topic/shortcodes-413/)
 *  Thread Starter [Anthony Darter](https://wordpress.org/support/users/adarter/)
 * (@adarter)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/shortcodes-413/#post-14469090)
 * Is there any way to embed the latest poll? I do not want to have to copy and 
   paste the code onto a page every time we create a new poll.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Crowdsignal Forms] Shortcodes?](https://wordpress.org/support/topic/shortcodes-413/)
 *  Thread Starter [Anthony Darter](https://wordpress.org/support/users/adarter/)
 * (@adarter)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/shortcodes-413/#post-14469071)
 * Found this link but cannot get the shortcode to work with DIVI.
 * [https://crowdsignal.com/support/wordpress-shortcodes/](https://crowdsignal.com/support/wordpress-shortcodes/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Booking for Appointments and Events Calendar - Amelia] Office365.com – Outlook calendar 2-way sync not working](https://wordpress.org/support/topic/office365-com-outlook-calendar-2-way-sync-not-working/)
 *  [Anthony Darter](https://wordpress.org/support/users/adarter/)
 * (@adarter)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/office365-com-outlook-calendar-2-way-sync-not-working/#post-14087301)
 * Found this to be very helpful:
    **Verify a new domain for your app**
 * [https://docs.microsoft.com/en-us/azure/active-directory/develop/howto-configure-publisher-domain](https://docs.microsoft.com/en-us/azure/active-directory/develop/howto-configure-publisher-domain)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[RestroPress - Online Food Ordering System] Duplicate Food Items](https://wordpress.org/support/topic/duplicate-food-items/)
 *  Thread Starter [Anthony Darter](https://wordpress.org/support/users/adarter/)
 * (@adarter)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/duplicate-food-items/#post-12624189)
 * Admin settings are default
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[RestroPress - Online Food Ordering System] Duplicate Food Items](https://wordpress.org/support/topic/duplicate-food-items/)
 *  Thread Starter [Anthony Darter](https://wordpress.org/support/users/adarter/)
 * (@adarter)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/duplicate-food-items/#post-12624173)
 * Image:
    [https://foodordering.smallofficehost.com/wp-content/uploads/2020/04/Capture.png](https://foodordering.smallofficehost.com/wp-content/uploads/2020/04/Capture.png)
 * Page:
    [https://foodordering.smallofficehost.com](https://foodordering.smallofficehost.com)

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