Is there a way to move the Themeforest username and API key out of the Enfold theme options system so multisite users don’t have access to them? For example, can these settings be moved to the wp-config.php file as constants?
Hi Kevin!
Thank you for using Enfold.
I’m not sure if it’s possible to move the settings but you can hide the theme update panel with this on functions.php:
function ava_custom_script() {
echo '<style type="text/css">div#avia_update, .avia_section_header.goto_update{display: none !important;}</style>';
}
add_action('admin_head', 'ava_custom_script');
Maybe, you can add conditional functions so that only a certain user can see it.
Regards,
Ismael