Advertisement
Guest User

Untitled

a guest
Dec 9th, 2013
2,360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function custom_register_redirect( $oldMessage, $oldLink ){
  2. $new_url = 'http://www.my_site.com/my_page'; // here you can specify your own url
  3.  
  4.  return '<font id="messageTextColor">' . sprintf(__( 'You will soon be redirected automatically. If you see this page for more than 3 seconds, please click %1$s.%2$s', 'profilebuilder'), '<a href="'.$new_url.'">'.__('here', 'profilebuilder').'</a>', '<meta http-equiv="Refresh" content="3;url='.$new_url.'" />') . '</font><br/><br/>';
  5. }
  6. add_filter ( 'wppb_register_redirect_after_creation1', 'custom_register_redirect', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement