 
	
		
		
		
		
			
I have launched my site and want to dummy proof it for the client. I already disabled the reset all options and dummy data buttons in functions.php. How do I also remove or hide the Predefined Color Schemes buttons at the top of the Styling section? Thanks for the great theme!
Hey aarynm!
Please go to wp-content/themes/enfold/includes folder and open register-admin-options.php file and find
$avia_elements[] =	array(
					"slug"	=> "styling",
					"name" 	=> "Select a predefined color scheme",
					"desc" 	=> "Choose a predefined color scheme here. You can edit the settings of the scheme bellow then.",
					"id" 	=> "color_scheme",
					"type" 	=> "link_controller",
					"std" 	=> "Blue",
					"class"	=> "link_controller_list",
					"subtype" => $styles);and comment it out as following
//$avia_elements[] =	array(
			//		"slug"	=> "styling",
			//		"name" 	=> "Select a predefined color scheme",
			//		"desc" 	=> "Choose a predefined color scheme here. You can edit the settings of the scheme bellow then.",
			//		"id" 	=> "color_scheme",
			//		"type" 	=> "link_controller",
			//		"std" 	=> "Blue",
			//		"class"	=> "link_controller_list",
			//		"subtype" => $styles);Cheers!
Yigit
