Display Signup form field on Profile
Using Jamroom
In most locations on the profile you will find a {$_profile} section in the profiles, the {$_user} variable is the user looking at the screen, but in that template the {$_profile} array has been expanded out into individually callable variables for readability.
So where normally you might need to type {$_profile._user_id} to get the user_id of the profile that is being looked at, in this template all of the sub variables of the $_profile array have been exploded to their own stand alone variables, so {$_user_id} is the variable of the profile being looked at.
You can test this by putting:
THE PROFILE NAME IS {$profile_name} and the user_id is {$_user_id}--edit--
If you use {$_user._user_id} you will get your info on every page.
updated by @michael: 09/15/16 04:51:42AM