Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #247947

    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!

    #248382

    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

    • This reply was modified 10 years ago by Yigit.
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.