Docs / Filter Reference / wpdm_email_lock_heading

wpdm_email_lock_heading

Description


If you want to change Email Lock Panel title/heading from Subscribe to download to something else you can use this hook.

Parameters


Two arguments are passed to this hook.

Usage


To change download link text to an image or other text.

add_filter('wpdm_email_lock_heading','wpdm_custom_email_lock_heading',10,2);

Examples


<?php
add_filter( 'wpdm_email_lock_heading', 'wpdm_custom_email_lock_heading', 10, 2 );
function wpdm_custom_email_lock_heading( $lock_heading, $package ) {
    $lock_heading = "My custom title";
    return $lock_heading;
} 
?>

 

Last updated on January 26, 2026

Need Help?

Get support from our team or community forum.

Visit Support

Customization

Need custom features? We can help.

Request Quote