Hi kathrynmpu,
this was sometghing I tried to solve too and found a solution which works just fine for me.
What you’re looking for is based in this file:
../wp-content/plugins/job-postings/class-job-postings.php
Start by making your changes update secure with the following option:
In your (child)theme’s folder, make a folder “jobs”.
Inside that folder, copy the class-job-postings.php from the plugin.
Wordpress will then use the class-job-postings.php from there and you can safely edit this file. (inspired by: https://www.ads-software.com/support/topic/changing-single-job-template/ – thanks to Robert89)
Editing that file
In line 128 the standard employment types begin. copy and paste the last entry beneath and change the content that is in between this ” (the first part in ().
Example
Find and copy this complete line:
"OTHER" => __('others', 'job-postings'),
AND paste it in a new line under the standard types.
Now change it from this:
"OTHER" => __('others', 'job-postings'),
to this:
"SPECIAL" => __('specialtypethatsuitsyourneeds', 'job-postings'),
… I changed “SPECIAL” AND ‘specialtypethatsuitsyourneeds’.
This leads to a new selection in the backend when editing or inserting a single job.
Hopefully this helps you.
All the best,
Chris
-
This reply was modified 3 years, 6 months ago by
chrisaudio. Reason: formatting and semantic corrections (I'm from Germany and no n ative english speaker)
-
This reply was modified 3 years, 6 months ago by
chrisaudio.
-
This reply was modified 3 years, 6 months ago by
chrisaudio.
-
This reply was modified 3 years, 6 months ago by
chrisaudio.
-
This reply was modified 3 years, 6 months ago by
chrisaudio. Reason: added a solution to stay update secure