Skip to content

Instantly share code, notes, and snippets.

@xnau
Created February 12, 2026 19:48
Show Gist options
  • Select an option

  • Save xnau/9a2b27d65d494a2f60c6e0d32ac900f5 to your computer and use it in GitHub Desktop.

Select an option

Save xnau/9a2b27d65d494a2f60c6e0d32ac900f5 to your computer and use it in GitHub Desktop.
Shows how to disable the Brute Force check on the Participants Database Resend Private Link Form
<?php
/**
* Plugin Name: PDB Disable Retrieve Form Brute Force Protect
* Description: disables the brute force protection in the retrieve private link form
*/
add_filter( 'pdb-retrieve_link_brute_force_protect', function () { return false; } );
@xnau
Copy link
Author

xnau commented Feb 12, 2026

Simply download, install and activate. This just disables the brute force check altogether, so be aware of the security implications.

How to Install a WordPress Plugin from a Gist

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment