02/24/2016 at 10:33 am
#366719
Keymaster
@ Carolin
First, install the Code Snippet plugin.
Add a new snippet with the following code:
add_filter( 'cn_social_network_options', 'cn_social_network_options' );
function cn_social_network_options( $options ) {
unset( 'imdb' );
unset( 'vk' );
return $options;
}
Save and activate the new snippet.
This snippet will remove the IMDb and VK options. To remove other add a new unset line with the id to unset.
You can find all the IDs on this page. The IDs you should use are on the left side of =>
Hope that helps!
