Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1019253

    Hello
    I hit by mistake the “reset all option ” button. Is it possible to disable the “reset all option” button, so I can not hit it by mistake again and all my adjusted options are gone ? Thanks for your help.

    kind regards
    Roger Baumann

    #1019322

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

    add_action('admin_head', 'remove_reset_button');
    function remove_reset_button() {
      echo '<style>
    	.avia_footer_reset{ display: none !important; } 
      </style>';
    }

    Best regards,
    Mike

    #1019638

    Hi Mike
    Thanks a lot for help. It works.

    kinde regards
    Roger

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Enfold Child theme option, reset all option button’ is closed to new replies.