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

    hey folks,

    everytime i like to import a font it says:
    Using this feature is reserved for Super Admins
    You unfortunately don’t have the necessary permissions.

    site is a single site not a network one. i tried to set super admin via functions.php of the theme – no luck.
    whats wrong here? i am using the latest version of the theme 4.8.6.2 and the update to it went flawlessly.
    thanks
    tom

    • This topic was modified 3 years, 3 months ago by brouge.
    #1318342

    ok i solved it with a plugin:
    <?php
    /*
    Plugin Name: Enfold Permissions
    Description: Enfold Permissions
    Version: 1.0
    Author: InoPlugs
    Plugin URI: https://inoplugs.com
    Author URI: https://inoplugs.com
    */

    add_filter(‘avf_file_upload_capability’, ‘avia_file_upload_capability’, 10, 1);
    function avia_file_upload_capability($cap)
    {
    $cap = ‘edit_posts’;
    return $cap;
    }

    #1318540

    Hi brouge,

    We’re glad to hear that :)
    And thanks for sharing the solution that worked for you.
    Thanks as well for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘problems with import permissions’ is closed to new replies.