| 1 |
<?php |
| 2 |
// Exit if accessed directly |
| 3 |
if ( ! defined( 'ABSPATH' ) ) exit; |
| 4 |
|
| 5 |
add_filter('wppb_send_credentials_checkbox_logic', 'wppb_toolbox_send_credentials_enabled', 10, 2); |
| 6 |
function wppb_toolbox_send_credentials_enabled($requestdata, $form){ |
| 7 |
return '<input id="send_credentials_via_email" type="hidden" name="send_credentials_via_email" value="sending"/>'; |
| 8 |
} |
| 9 |
|