Careeromatic plugin

This topic is: resolved

 

Thank you for contacting me. Please note that I live in the GMT+3 time zone - responses might be delayed by this.

Viewing 5 reply threads
  • Author
    Posts
    • #8017


      Ericmuc
      Participant
      Post count: 8

      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

    • #8018


      Szabi – CodeRevolution
      Keymaster
      Post count: 4188

      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.

    • #8105


      Ericmuc
      Participant
      Post count: 8

      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

    • #8108


      Szabi – CodeRevolution
      Keymaster
      Post count: 4188

      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.

    • #8111


      Ericmuc
      Participant
      Post count: 8

      Hi,

      Thanks a lot, that is great! The download is still the old version, do I have to wait?

      Kind regards

      Eric

    • #8112


      Szabi – CodeRevolution
      Keymaster
      Post count: 4188

      Yes, update approval takes a while, but should be processed soon.

      Regards.

Viewing 5 reply threads

The topic ‘Careeromatic plugin’ is closed to new replies.