• Resolved teamupfund

    (@teamupfund)


    I am using the username placeholder to dynamically populate the redirect URL after login. The username for users is their email address. When I use this, the “@” symbol it gets encoded to %40. I want the “@” symbol to be preserved as I’m using that as a parameter. Can this be done?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mej de Castro

    (@mej)

    Hi @teamupfund , unfortunately it is not possible to retain the @ sign in the url, because it auto encoded. But I would suggest decoding the url to still get the @ on the url.

    Thank you,
    Mej

    Plugin Author Mej de Castro

    (@mej)

    Example:

    $url = “/login?user=%40username“

    $new_url = urldecode($url); // return login?user=@username

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Username Placeholder not rendering correctly’ is closed to new replies.