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

    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?

    #443501

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.