Hello,
is there a variable to show "text a" for a guest and "text b" for a registered member ?
I use v1.5.
Many thanks
Please don't double post. Thanks.
You can use the following code to show different content to guests and registered users
if (USER_ID > 0) {
// registered user
} else {
// guest
}