Confrim job page - How to show the title of the job type instead of the slug?
Hi Everyone,
On the last step of the "submit a job" process when you're on the confirm page, it shows all the details before you click on "confirm and submit."
The issue I'm having is that at the very beginning of all the info displayed, the slug is shown for the job type and not the job type itself that I manually
put in. The theme is being translated to RTL and therefore the slugs are in english rather than the reflecting the complex text for the job type.
What I would like to do is instead of the slug, to have it pull the Job types I put in.
I believe the php is here:
PHP Code:
$post_into_types[] = get_term_by( 'slug', sanitize_title($posted['job_term_type']), 'job_type')->slug;
This I found in the file confirm-job-process.php
If this is the right location, anyone know how to edit the phpt to get it to just pull the job types I created from the admin?
Thanks!