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
Comments
Many thanks
Do you use the native English of Zenphoto? I don't remember if the terms are all lowercase or not right now.
1. 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.
2. 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
2) Sorry, my colleague is more familiar with the login stuff so hopefully he can help with that later.
#2 Logon forms are done by the Zenphoto_Athority class.
Starting from line 302 you'll see bits of code like
`sprintf('street%s:',$required).`
Change `street%s` to `Street%s`
Do this for all the address parts.
Like @crylian said it's best to make custom plugin and put that in the plugins folder.
`
$(document).ready(function(){
$("legend:contains('User')").text("Email");
});
`
Regards