• Resolved wklcons

    (@wklcons)


    I have an issue with the plugin. I want to remove the logo from the job listing, or at least remove the thumbnail that generates automatically in the single job post. I tried every code that is out there but I think I don’t know how to use it properly.
    I am using WP Import to import the jobs from our ATS and that’s where I put the link to the picture that is used as a logo.
    thank you!
    Or if it’s possible to leave the logo in the listing, but change the thumbnail to one photo for all single jobs it would be amazing

    • This topic was modified 3 years, 6 months ago by wklcons.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • @wklcons
    if you want to remove the company logo on the job detail you have to delete line 21-23 in this template:

    content-widget-job_listing.php

    and if you watn to remove this from the page, where the jobs shortcode is located remove line 23 from this template:
    content-job_listing.php

    Thread Starter wklcons

    (@wklcons)

    @braehler hi, thank you for the reply
    do you know where I can find the templates as well? I only got the site last month and who built it before me left.

    And is there a way to keep the logo on the listing, but change the thumbnail that is displayed in the single posts?
    if not I will just delete it, thank you!

    @wklcons
    you can find the templates here:
    Log into ftp on your server.
    wordpress/wp-content/plugins/wpjobmanager/templates
    To keep your changes upgrade safe you need to upload the copy with your changes to this directory on your server:
    your_childtheme/job_manager/
    AS far as I know, there is a placeholder image located at:
    wp-content/plugins/wp-job-manager/assets/images/company.png

    You could override this with a file that fits your need, but then you have to remove the upload section during the job submisson flow.
    And each time you updte the plugin you have to everride it again

    Removing the field from the job submission field goes like this

    add_filter( 'submit_job_form_fields', 'custom_submit_job_form_fields_dm' );
    
    function custom_submit_job_form_fields_dm( $fields ) {
        // in this example, we remove the job_tags field
        unset($fields['job']['job_tags']);
    
        // And return the modified fields
        return $fields;
    }

    This code will remove the jo_tags field, you need to figure out which field the compnay logo has, I′m pretty sure thats this meta key: compnay_logo.
    Code goes into your childthemes functions.php

    Thread Starter wklcons

    (@wklcons)

    thank you I fixed it

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Delete company logo from the job listing’ is closed to new replies.