Viewing 1 replies (of 1 total)
  • @jpg-designs

    can be done via this snippet

    add_filter( 'submit_job_form_fields', 'gma_custom_submit_job_form_fields' );
    
    function gma_custom_submit_job_form_fields( $fields ) {
        
        
        unset($fields['company']['company_logo']);
    
        return $fields;
    }

    Just put this into your functions.php
    Easiest way to modify fields quickly is this plugin here. Easy to use, safes you a lot of time and the suport is great
    https://plugins.smyl.es/wp-job-manager-field-editor/

    • This reply was modified 5 years, 1 month ago by braehler.
    • This reply was modified 5 years, 1 month ago by braehler.
    • This reply was modified 5 years, 1 month ago by braehler.
Viewing 1 replies (of 1 total)

The topic ‘Remove the logo upload field’ is closed to new replies.