Title: Remove Form Fields
Last modified: November 10, 2016

---

# Remove Form Fields

 *  Resolved [beezer26164](https://wordpress.org/support/users/beezer26164/)
 * (@beezer26164)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/remove-form-fields-2/)
 * **Could you tell me how to remove the price field and the website field from 
   the submission form.**

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

 *  Plugin Author [classifiedswp](https://wordpress.org/support/users/classifiedswp/)
 * (@classifiedswp)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/remove-form-fields-2/#post-8444521)
 * [@beezer26164](https://wordpress.org/support/users/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](https://wordpress.org/support/users/beezer26164/)
 * (@beezer26164)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/remove-form-fields-2/#post-8511077)
 * **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.

 * ![](https://s.w.org/plugins/geopattern-icon/classifieds-wp_42a2cd.svg)
 * [Classifieds WP](https://wordpress.org/plugins/classifieds-wp/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/classifieds-wp/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/classifieds-wp/)
 * [Active Topics](https://wordpress.org/support/plugin/classifieds-wp/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/classifieds-wp/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/classifieds-wp/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [beezer26164](https://wordpress.org/support/users/beezer26164/)
 * Last activity: [9 years, 6 months ago](https://wordpress.org/support/topic/remove-form-fields-2/#post-8511077)
 * Status: resolved