• I’m using ThemeMyLogin and one of the links the user can click on once logged in is called “My Contests” (www.website.com/my-contests/)

    How can I make it so that depending on that person’s username/user id, when they click on that link they will be sent to a page that’s customized for their username/user id?

    For example:
    JoeSchmo55 clicks on https://www.website.com/my-contests/,
    and they are sent to a page that I made specifically for them such as https://www.website.com/joeschmo55-contests/

    Is there any way to do that? Any shortcodes or anything?

    Thanks,
    Tony

Viewing 3 replies - 1 through 3 (of 3 total)
  • I can give you a possible starting point:

    <?php global $user_identity; if ($user_identity) { echo "<h3>Hi $user_identity! "; } ?>

    Thread Starter Tony

    (@acfurino)

    I have no idea what that code means haha could you please elaborate in basic terms?

    Sorry, I didn’t realise, and it was only a starting point. It was basically to say that you could use that to say that if a user’s identity = Jane then do something.

    Someone else might have a better idea.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Make a URL page with username/user id?’ is closed to new replies.