This will make the Profile Photo option on the Jooin page a required option. I have tested this on Version 7.0.2. However this should work with version 7.0.1 as well.

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