Autofill anonymous name

fion

Member
Is there a way to autofil or autocomplete the name field for posts from anonymous users? For example we want it to autofil with "anonymous", but also allow users to enter a different name if they wish.
 
I'm sure with a template you could do something on the input. I've never tried.

Something like this would work on the value="" field (I'm guessing):
Code:
{xen:if '!{$visitor.user_id}', 'Anonymous', ''}
 
Top Bottom