Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
I've tried using $member['userid'] but it breaks the forum... Probably because it's being used within a shortcode, as I mentioned above. And I do need the current post user ID in the loop, but $member is not pulling that—it's pulling the current logged in user ID. Please help—I don't know if there's another array or set of code I can use but I have to get this system functional for my client this week so they can get beta testers in.
Thank you!
Hi thestephaniejns,
I'm sorry but we don't provide codding and customization support. I'd only recommend to output all Global variables and check what variable is available, then use global PHP operator to access in your shortcode function. For example you can try :
function myfunc(){
global $member;
.... then use $member['userid'....]
}