Bugs & Missing Translations found on JobRoller
I've finished my website (
Elo Criativo) using JobRoller and I'm now posting the bugs and missing translations that I've found. My website is in Portuguese.
BUG's
- line #364 on
tpl-myjobs.php. The translation function
is pointing to
'wp-post-order' instead of
'appthemes'.
- line #193 on
theme-geolocation.php is referencing the variables, '
latitude' and '
longitude' that are not used on the function context. On this line, '
Latitude' should be replaced for '
postLatitude' and '
Longitude' replaced by '
postLongitude'.
- line #188 on
confirm-job-process.php. All my posts were being attached with an empty file when I didn't upload a logo. Added an
PHP Code:
if ($file != '') :
before this line and closing after
PHP Code:
update_post_meta( $post_id, '_thumbnail_id', $id );
to solve this problem.
- line #212 on
edit-job-form.php. I was not being able to relist a job when there were no job packs associated. Solution:
The request that should inform about the relisting (line #212)
PHP Code:
echo '<input type="hidden" name="relist" value="true" />';
is not being read because it is inside the
If on line #152
PHP Code:
if (sizeof($packs) > 0 || sizeof($user_packs)>0) :
To solve this, I just moved the input after the
PHP Code:
endif;
echo '<input type="hidden" name="relist" value="true" />';
on line #214.
Missing Translations
- lines #326 and #327 on
theme-emails.php. '
Day' and '
Days' strings are not being translated.
- line #140 on
application-process.php. '
Applicant Name' and '
Applicant Email' strings are not being translated.
These were minor problems. I'm very pleased with JobRoller. Keep the good work guys!