• Resolved dawazote

    (@dawazote)


    Is there a way to automatically populate company details like website, logo, tagline, etc without having to input manually all the time. I post all jobs myself so it becoming repetitive/ inefficient to input all the data every time I post a job.

    Hope to get a solution!

Viewing 1 replies (of 1 total)
  • Plugin Support lastsplash (a11n)

    (@lastsplash)

    Hi @dawazote

    We have a code snippet on our website that does this for the company logo:

    add_filter('submit_job_form_fields', 'dm_prefill_company_logo'); // for users not logged in
    add_filter('submit_job_form_fields_get_user_data', 'dm_prefill_company_logo'); // for logged in users
    function dm_prefill_company_logo( $fields ) {
      $fields['company']['company_logo']['value'] = 'full_url_to_the_logo';
      return $fields;
    }

    You could add to this to function to auto-fill additional fields.

    However, beyond providing the code snippet above, we aren’t able to assist with custom code requests like this per our support policy. If you need additional assistance, you will need to hire a developer.

Viewing 1 replies (of 1 total)

The topic ‘Company Profiles’ is closed to new replies.