Hi
On my user registration form I have address fields. The problem I am facing is that all the letters are uncapitalised, e.g "street" rather than "Street".
I have searched through my ZenPhoto folders/files to find where to change this and have not had much luck. Please can you advise upon the location of this file?
Regards
All plugin files are within /zp-core/zp-extensions. As alway you should not modify files there but create custom files. For all plugins you can create custom forms to be placed within either the theme's folder or within the /plugins (user plugin folder). Please see the documentation of the plugin.
Do you use the native English of Zenphoto? I don't remember if the terms are all lowercase or not right now.
I believe I am using the native English of ZenPhoto. I keep looking for the files but I'm not having any luck. So far I've tried:
Problem of changing 'street' to Street' on the registration form - I've tried looking in zp-core/zp-extensions/register_user/register_user_form.php and zp-core/zp-extensions/register_user.php.
Problem of changing 'User' to 'Email Address' on the login form - I've tried looking in zp-core/zp-extensions/user_login-out.php.
Please help as at the moment problem number 1 looks unprofessional and number 2 is confusing for users.
Regards
Starting from line 302 you'll see bits of code like
sprintf('street%s:',$required).
Change [i]street%s[/i] to [i]Street%s[/i]
Do this for all the address parts.
Like @crylian said it's best to make custom plugin and put that in the plugins folder.