Forums
(@katzwebdesign)
8 years, 1 month ago
This should work well.
@burnstuff – I think #4 is the key:
Note that please use drop-in.php when you select “my-plugins (ip-geo-block-mu.php)” as “Validation timing” at “Validation rule settings”.
drop-in.php
The admin-ajax.php action is gv_datatables_data. I added that (and other possible culprits) to the whitelist. When that didn’t work, I added a var_dump() statement in the filter code to see if it was ever reached, and it wasn’t.
admin-ajax.php
gv_datatables_data
var_dump()
Here’s the code I added to John’s site.
Excellent, thanks for the review!
Thanks for the rating!
Please check out the plugin again-I updated it shortly after your review and it has been working great!
Please check out the plugin again-it works great with CF7!
Thanks for the review!
You need to set the values for the hidden fields.
In the form:
[hidden hidden-841 "user_email"] [hidden hidden-842 "user_name"]
In the Mail tab “From” field:
[hidden-841] <[hidden-842]>
You can use
add_filter( 'wpcf7_validate_hidden', 'wpcf7_hidden_validation_filter', 10, 2 ); add_filter( 'wpcf7_validate_hidden*', 'wpcf7_hidden_validation_filter', 10, 2 );
You can use wpcf7_hidden_field_value filter to do this. See more here
wpcf7_hidden_field_value
Yes, it is
This will be fixed in the next update, coming later today. Thanks for reporting.