Does anyone know how I can make so that users can not change their name when posting a review? By default the users name is displayed in the 'Name' input field, but users can change this text.
Does anyone know how I can make this 'Name' field on review pop-up box unable to be changed by user?
Thanks in advance!
Add readonly="readonly" to the input tag for that field. Or make the field hidden with style="display:none;".
design/themes/responsive/THEME/addons/discussion/views/discussion/components/new_post.tpl
replace
with
Add readonly="readonly" to the input tag for that field. Or make the field hidden with style="display:none;".
design/themes/responsive/THEME/addons/discussion/views/discussion/components/new_post.tpl
replace
with
I found the readonly="readonly" and style="display:none" trick to be very helpful. Both solutions you guys provided did the job.
Thanks so much fellas!