Anthony Darter
Forum Replies Created
-
Forum: Plugins
In reply to: [hCaptcha for WP] Not displaying captcha for Formidable FormsSolution: 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, 1 month ago by Anthony Darter.
- This reply was modified 1 year, 1 month ago by Anthony Darter.
Forum: Plugins
In reply to: [hCaptcha for WP] Not displaying captcha for Formidable FormshCpatcha plugins says, “Site config is valid.” I also cleared all cache, and checked the error_log.
— Active plugins and themes —
Divi:
Divi Comment Form: On
Divi Contact Form: On
Divi Email Optin Form: On
Divi Login Form: On
Formidable Forms:
Form: On
Wordfence:
Login Form: On
WP Core:
Comment Form: On
Login Form: On
Lost Password Form: On
Post/Page Password Form: On
Register Form: On— WordPress Configuration —
Version: 6.7.2
Memory Limit: 128M— WordPress Active Plugins —
Classic Editor: 1.6.7
Duplicate Page: 4.5.4
Font Awesome 4 Menus: 4.7.0
Formidable Forms: 6.19
Formidable Forms Pro: 6.19.1
Formidable Submission Limiter: 1.0.2
hCaptcha for WP: 4.11.0
LiteSpeed Cache: 7.0.0.1
MainWP Child: 5.4.0.3
Smush: 3.18.0
Wordfence Security: 8.0.4
WP-Sweep: 1.1.8
WP External Links: 2.62
WP Mail SMTP: 4.4.0
Yoast SEO: 24.7— Webserver Configuration —
PHP Version: 8.1.32
MySQL Version: 10.6.21
Webserver Info: LiteSpeed— PHP Configuration —
Memory Limit: 256M
Upload Max Size: 64M
Post Max Size: 64M
Upload Max Filesize: 64M
Time Limit: 300
Max Input Vars: 10000Forum: Plugins
In reply to: [LiteSpeed Cache] Error LogDeactivating 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.1st instance (users.php)
https://i.snipboard.io/UO1lzB.jpgSolution:
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.jpgSolution:
use admin_enqueue_scripts hook to register a script filejQuery('#createuser #role').off('change');3rd instance (profile.php and user-edit.php)
https://i.snipboard.io/o5u0z1.jpgSolution:
use admin_enqueue_scripts hook to register a script filejQuery("#your-profile table:contains('Wordfence')").remove();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
In reply to: [Crowdsignal Forms] Shortcodes?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
In reply to: [Crowdsignal Forms] Shortcodes?Found this link but cannot get the shortcode to work with DIVI.
Found this to be very helpful:
Verify a new domain for your apphttps://docs.microsoft.com/en-us/azure/active-directory/develop/howto-configure-publisher-domain
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Duplicate Food ItemsAdmin settings are default
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Duplicate Food Items