Created
October 14, 2020 06:32
Revisions
-
yousufansa created this gist
Oct 14, 2020 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ if ( ! function_exists( 'mas_wpjmc_fields_remove_admin_fields' ) ) { function mas_wpjmc_fields_remove_admin_fields( $fields ) { unset( $fields['_company_tagline'] ); // unset( $fields['_company_since'] ); // You can unset other fields also like this return $fields; } } add_filter( 'company_manager_company_fields', 'mas_wpjmc_fields_remove_admin_fields', 10 );