I have a question that I hope will be pretty simple for some of the WordPress Gurus out there.
I have a WordPress network and whenever a users signs up, I would like to show (on signup confirmation page) a message that shows the code:
<script type="text/javascript" src="http://mysite.com/js/redirection-mobile.js"></script>
<script type="text/javascript">
SA.redirection_mobile ({nmobile_url :
"USERURL.mysite.com", });
</script>
Note that I am trying to display the user’s URL that they just signed up with in the message.
Does anybody know how to do that without modifying any of the WordPress core?
Let me know if this is a little too vague, or if you need any more information.
Thanks,
Keenan
http://codex.wordpress.org/Plugin_API/Action_Reference/user_register
placing that in your functions.php should work. This attempts to redirect the user after they register, i believe after they click the link in the email, which is what i think you were looking for.