Advertisement
sbrajesh

auto-login-on-activation-redirect

Nov 5th, 2012
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. add_filter('bpdev_autoactivate_redirect_url','custom_welcome_page_url');
  2.  
  3. function custom_welcome_page_url($url){
  4.     return 'http://mysite.com/my-awesome-welcome-page/';
  5.    /**
  6.     * Change the url with your own site's welcome page url
  7.     */
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement