Thank you for contacting me. Please note that I live in the GMT+3 time zone - responses might be delayed by this.
This topic has 5 replies, 2 voices, and was last updated 1 year, 4 months ago by Szabi – CodeRevolution.
-
AuthorPosts
-
-
July 10, 2023 at 7:58 pm #8017
I am using it with the geolocation plugin https://geomywp.com/extensions/wp-job-manager-geolocation/, the jobs are imported well by your careeromatic plugin, but the radius in alerts (that is the extra function of that plugin), is not working automatically. I have to start an extra function manually for importing the geo data. The developer of the gomywp plugin asks me, in which fields your plugin stores the geo data. Do you have a doc for that?
Thanks, kind regards
Eric
-
July 11, 2023 at 6:29 am #8018
Hello,
First of all, thank you for your purchase.
Saving location related meta info to posts was not available in the plugin, but I updated it now to v1.3.7.3, you will find in newly created posts the following meta field, which will hold the job location data: careeromatic_location
Regards, Szabi – CodeRevolution.
-
July 18, 2023 at 12:58 pm #8105
Hi,
Thanks, I see the custom field (wasn’t it available in previous versions? I remember such a field ..), but I have a special problem.
If a job is created by a user all the geo data are in place and even the alert with radius search is working. Only the imported job with your plugin don’t have all needed geo data in place and they are not found with the alert radius search.
The developer of the radius search plugin wrote me:
“I just added a test job ( named “Test Job” ) on your site from the admin’s dashboard and the jobs showed on the job alerts ( see attachment ). So the issue is specifically with imported jobs. Something preventing the geolocation plugin from adding the location of the imported job into the Jobs Geolocation database.
Would you please contact the Careeromatic developer again and ask if there is an action hook that fires either after each imported job? If so, we could probably use that hook to dynamically import the location of the job into the geolocation database.”
Could you please send me such action hook of your plugin?
Thanks a lot, kind regards
Eric
-
July 18, 2023 at 7:48 pm #8108
Hello,
I updated Careeromatic to v1.3.7.4 – added an action hook which fires after each post insert.
The hook name is: careeromatic_wp_insert_post
You can use it as follows:
// Function to be hooked into careeromatic_wp_insert_post
function my_custom_action_hook_function($post_ID, $post) {
// Perform your desired actions here
// You can access the inserted/updated post object using $post_ID or $post
// You can also check whether it’s an update or insert using the $update parameter
}
add_action(‘careeromatic_wp_insert_post’, ‘my_custom_action_hook_function’, 10, 2);I hope this helps.
Regards.
-
July 18, 2023 at 8:35 pm #8111
Hi,
Thanks a lot, that is great! The download is still the old version, do I have to wait?
Kind regards
Eric
-
July 18, 2023 at 8:37 pm #8112
Yes, update approval takes a while, but should be processed soon.
Regards.
-
-
AuthorPosts
The topic ‘Careeromatic plugin’ is closed to new replies.