Title: Remove Listing Agent(s) *Label*
Last modified: August 31, 2016

---

# Remove Listing Agent(s) *Label*

 *  Resolved [Steve Borsch](https://wordpress.org/support/users/sborsch/)
 * (@sborsch)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/remove-listing-agents-label/)
 * Fantastic documentation and great flexibility with the plugin (we bought the 
   full version with all add-ons). This might help others so am putting this here
   vs. a support ticket.
 * I’ve successfully removed the Listing Agent(s) meta data with this…
 *     ```
       // Remove Listing Agent(s) Meta
       function remove_agent_meta_box($field) {
       return;
       }
       add_filter('epl_meta_listing_agents', 'remove_agent_meta_box');
       add_filter('epl_meta_property_office_id', 'remove_agent_meta_box');
       add_filter('epl_meta_property_agent', 'remove_agent_meta_box');
       add_filter('epl_meta_property_second_agent', 'remove_agent_meta_box');
       add_filter('epl_meta_property_agent_hide_author_box', 'remove_agent_meta_box');
       ```
   
 * …but am unable to figure out how to remove the label “Listing Agent(s)” though.
   I’ve tried filter $group but that doesn’t do it and I’m actively modifying meta
   now so would like to know for the future too. Any ideas?
 * [https://wordpress.org/plugins/easy-property-listings/](https://wordpress.org/plugins/easy-property-listings/)

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

 *  Plugin Author [Merv Barrett](https://wordpress.org/support/users/mervb1/)
 * (@mervb1)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/remove-listing-agents-label/#post-7445598)
 * Wrote an answer for you and its not working, looking into this as it should work
   as per your example. We have an update to EPL coming shortly and will see if 
   we can enhance this so you can remove the title.
 *  [Prince Singh](https://wordpress.org/support/users/curi0us_s0ul/)
 * (@curi0us_s0ul)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/remove-listing-agents-label/#post-7445607)
 * Hi Steve,
 * Not sure how you tried $group filter . It can remove listing agent section from
   the metabox. Please try the code below and let me know
 * Thanks
 *     ```
       function remove_epl_agents_meta_box($group) {
       	return;
       }
   
       add_filter('epl_meta_groups_listing_agents',remove_epl_agents_meta_box);
       ```
   
 *  Thread Starter [Steve Borsch](https://wordpress.org/support/users/sborsch/)
 * (@sborsch)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/remove-listing-agents-label/#post-7445611)
 * Thanks pr1nc3. I didn’t have that quite right so now it’s gone. Appreciate the
   help.

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

The topic ‘Remove Listing Agent(s) *Label*’ is closed to new replies.

 * ![](https://ps.w.org/easy-property-listings/assets/icon-256x256.png?rev=984159)
 * [Easy Property Listings](https://wordpress.org/plugins/easy-property-listings/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/easy-property-listings/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/easy-property-listings/)
 * [Active Topics](https://wordpress.org/support/plugin/easy-property-listings/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/easy-property-listings/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/easy-property-listings/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [Steve Borsch](https://wordpress.org/support/users/sborsch/)
 * Last activity: [9 years, 10 months ago](https://wordpress.org/support/topic/remove-listing-agents-label/#post-7445611)
 * Status: resolved