Page 1 of 1

amend zip code to postal code on candidate register

Posted: 17 Aug 2017, 21:10
by paul2higgins
Hi ya

on which file do I edit where it says and my zip code is: - on the candidate register page?

Need to make it all UK centric, so need it to say postal code.

Re: amend zip code to postal code on candidate register

Posted: 18 Aug 2017, 12:35
by paul2higgins
anyone know which file to edit please?

Re: amend zip code to postal code on candidate register

Posted: 18 Aug 2017, 12:41
by cptr13
Best guess:
modules/settings/CareerPortalTemplateEdit.tpl


<select id="jobapplyselect<?php echo($index); ?>">
<option value="<input-firstName>">First Name *</option>
<option value="<input-lastName>">Last Name *</option>
<option value="<input-address>">Address Line</option>
<option value="<input-city>">City</option>
<option value="<input-state>">State</option>
<option value="<input-zip>">Zip Code</option>

Change zip to postal. Save the file

Re: amend zip code to postal code on candidate register

Posted: 18 Aug 2017, 14:43
by paul2higgins
amedned that file, still says same.

Re: amend zip code to postal code on candidate register

Posted: 18 Aug 2017, 14:57
by paul2higgins
found it, was in the career page template builder.

thanks for your help :)

Re: amend zip code to postal code on candidate register

Posted: 31 Aug 2017, 10:31
by RussH
Hi Paul,

for all this - if you don;t want to grep your own installation, then just search the github repo for the string you want to find;
Code: Select all
https://github.com/opencats/OpenCATS/search?utf8=%E2%9C%93&q=%22zip+code%22&type=
and it'll be one of the results you need to amend.

Re: amend zip code to postal code on candidate register

Posted: 23 Sep 2017, 03:15
by cptr13