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
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
Hi Mike
Thanks a lot for help. It works.
kinde regards
Roger