Description
This hook filters the successful registration message after the PayPal button has been added.
Parameters
$str
(string) (required) A string containing the message.
Changelog
Introduced in version 0.2
Source
wpmem_exp_success_msg is located in module.php
Usage
add_filter( 'wpmem_exp_success_msg', 'my_exp_success_msg' ); function my_exp_success_msg( $str ) { /** * $str will be a string containing the successful * registration message plus the HTML for the PayPal * button. */ return $str; }
See a list of all filter and action hooks