Description
You can use this hook to add additional field or any type message below email lock form at front-end
Parameters
One argument is passed to this hook.
Usage
<?php add_action('wpdm_after_email_lock_form','wpdm_custom_message'); ?>
Examples
<?php
add_action('wpdm_after_email_lock_form','wpdm_custom_message',10,2);
function wpdm_custom_message($package)
{
echo "Custom message...";
}
?>