07/06/2015 at 10:34 am
#339604
Keymaster
@ Anna
Yes, you can remove as many as you wish pretty easily by using a filter. Here’s how…
Install the Code Snippets plugin and add a new snippet with the following code:
add_filter( 'cn_education_level_options', 'cn_remove_education_levels' );
function cn_remove_education_levels( $options ) {
unset( $options['45'] );
// Add additional unset() statements for each level you would like to remove.
return $options;
}
Save and activate the new snippet.
