Hello Francis,
I saw your photos, and I think you are on the right way.
The offers listI saw you already modified the file screens/front.offer_adminarray.html.php, with something like that I suppose, line 155 :
<td align="left">
<?php echo htmlspecialchars( $offer->reference ); ?>
</td>
That's perfect, but you need to modify the query too, in the file tasks/front.offer_admin.php, line 72, and just add the field `offers.reference` in the list :
$query = "SELECT DISTINCT( offers.id ) AS id, offers.title AS title, users.name, COUNT( candidates.id ) AS applications, "
. "\n offers.published, offers.hits, categories.name AS catname, offers.created_datetime, offers.modified_datetime, offers.reference "
The candidates listYou need first to edit the file screens/front.candidate_array.html.php, line 127 :
<td align="left">
<?php echo htmlspecialchars( $candidate->reference ); ?>
</td>
And you need to edit the query in the file tasks/front.candidate_list.php too, line 88 :
$query = " SELECT candidates.id, candidates.lastname, candidates.firstname, candidates.post, candidates.date, offers.title,"
. "\n status.status, candidates.evaluation, candidates.email, candidates.offer, offers.reference "
Regards,