Action links
-
Hi,
So I added this as said, to the child theme function php:
function tml_action_url_filter( $url, $action ) {
if ( ‘register’ == $action )
$url = ‘https://eatchu.com/register/’;
return $url;
}
add_filter( ‘tml_action_url’, ‘tml_action_url_filter’, 10, 2 );It worked. But if I was to change the URL for dashboard and profile.. how would I go about with it?
(I already screwed up trying to do something similar – not really good at this coding thing)
Thanks,
Cm
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Action links’ is closed to new replies.