Description
This filter hook allows you to add content to come before the registration form. Similar to wpmem_login_form_before.
Usage
add_filter( 'wpmem_register_form_before', 'my_function' );
function my_function() {
$str = '<p>Some content that comes before the registration form.</p>';
return $str;
}Code Snippet Library [Subscriber Content]
See a list of all filter and action hooks