If you are a professional web developer and develop site in wordpress, you could remove options’s pages from your customers wordpress’s dashboard. You can use this simple snipped; you need to customize it using the right name for each option page.
Just paste the code on your theme’s function.php Continue reading
add_action( 'admin_init', 'wpc_remove_option' );
function wpc_remove_option() {
remove_menu_page('link-manager.php');
}