Hi,
on the join form for my site i have choose to have photo,
but members can skip this,
i want all who be a new member must upload a photo
when they join!
Any help would be appreciated.
As the same time i want to thank all
who been helping on this forum.
Thank you..
Kind regards
TMV
This will make the Profile Photo option on the Join page a required option.
The BxProfileFields.php is already coded to check if the profile photo is mandatory or not, but unfortunately there is no way to make it a "mandatory" item in the Amdin Panel.
All you have to do is go into your Database (via phpMyAdmin) and run the following script below to set this as mandatory.
Update sys_profile_fields
Set Mandatory = '1'
Where Name = 'ProfilePhoto' AND Mandatory = '0'
Once you have ran this, you will need to delete sys_profile_fields.inc from the /cache directory.
Enjoy!
Zarcon