Skip to content

Instantly share code, notes, and snippets.

@alanef
Created September 29, 2020 12:48
Show Gist options
  • Select an option

  • Save alanef/b9a418b3c3e33664f0d61317c38a8749 to your computer and use it in GitHub Desktop.

Select an option

Save alanef/b9a418b3c3e33664f0d61317c38a8749 to your computer and use it in GitHub Desktop.
<?php
add_filter( /**
*
* Filter the decision to send a confirmation or not
*
* @param $bool
*
* @return bool overrides any logic if set to true, if set to false then standard rules apply
*/
'qem_registration_always_confirm',
function ( $bool ) {
// your logic to set $bool to true or false
return $bool;
},
10,
1
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment