• Resolved JPG Designs

    (@jpg-designs)


    How do you remove the logo upload field?

    I need this removed all together.

    Is there some sort of pro upgrade we can do to be able to modify the fields?

    See here: https://tinyurl.com/ybqx4qsl

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

Viewing 1 replies (of 1 total)
  • braehler

    (@braehler)

    @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 4 years ago by braehler.
    • This reply was modified 4 years ago by braehler.
    • This reply was modified 4 years ago by braehler.
Viewing 1 replies (of 1 total)
  • The topic ‘Remove the logo upload field’ is closed to new replies.