Action Reference

wpdm_after_email_lock_form

1 min read Updated Jan 26, 2026

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..."; 
} 
?>

Related