How can I display a Member's User ID Number on their My Membership Index Page? Is there some code I can enter into an HTML block? Cheers, Callum.
How can I display a Member's User ID Number on their My Membership Index Page? Is there some code I can enter into an HTML block? Cheers, Callum. |
For the member viewing their membership page, you can get the member ID from the session cookie. $iMemID = (int)$_COOKIE['memberID']; It would be easier to do it with a php block. Geeks, making the world a better place |