Description
The default link for the registration page link takes the Register page set in the plugin’s settings. The wpmem_reg_link filter hook allows you to filter that link without filtering the entire dialog.
This filters both of the possible register links – the one in the sidebar widget and the one in the main body login form.
Usage
add_filter( 'wpmem_reg_link', 'my_reg_link' ); function my_reg_link( $str ) { return 'http://mysite.com/my-registration-page'; }
See a list of all filter and action hooks