Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author classifiedswp

    (@classifiedswp)

    @beezer26164,

    paste this code on your theme ‘functions.php’ to disable the fields in question:

    
    add_filter( 'submit_classified_form_fields', '_my_disable_fields' );
    function _my_disable_fields( $fields ) {
    	unset( $fields['classified']['classified_price'] );
    	unset( $fields['classified']['classified_website'] );
    	return $fields;
    }
    
    Thread Starter beezer26164

    (@beezer26164)

    Sorry For The Delay In Getting Back To You But This Worked Great Thanks!!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove Form Fields’ is closed to new replies.