Replies: 1
We were using this action to change the registration link:
function tml_action_url( $url, $action, $instance ) {
if ( ‘register’ == $action )
$url = ( ‘https://salesreps.microgendx.com/new-rep-registration/’ );
return $url;
}
add_filter( ‘tml_action_url’, ‘tml_action_url’, 10, 3 );
However, it seems after updating to TML 7, this function is no longer working for some reason. Any ideas?
Thanks!