Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #973597

    Hi everyone,

    I was wondering with the latest versoin of Enfold, how do I remove the buttons mentioned above?

    https://www.devq.nl/kriesi/screen3.PNG

    • This topic was modified 6 years, 5 months ago by insanityNL.
    #973604

    Hey insanityNL,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    
    // hide theme options
    add_action('admin_head', 'hide_theme_options');
    
    function hide_theme_options() {
      echo '<style>
        #wpbody-content #avia_options_page .avia_button.avia_button_grey.avia_reset,#wpbody-content #avia_options_page .avia_section_header.goto_update,#wpbody-content #avia_options_page .avia_section_header.goto_upload,#wpbody-content #avia_options_page .avia_section_header.goto_demo {
    		display: none !important;
    		}
      </style>';
    }

    Best regards,
    Mike

    #973607

    Wow thanks a lot Mike ! worked like a charm !!

    This topic can be closed ;)

    #973618

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Remove Demo Import, Import/Export, Theme Update and the Reset all button’ is closed to new replies.