• Resolved mahonyson

    (@mahonyson)


    Hello, since version 1.5.8 the widget settings not showing up anymore. Just the widget title, Delete and Done are shown. The Classic widgets plugin is activated. Happens on WP versions 6.2.3 and 6.3.2 in a multisite installation.

    Thanks for advice.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter mahonyson

    (@mahonyson)

    I found the reason and a solution. A Super admin in a Multisite network is not included in the allowed roles. In the file extended-text-widget.php, inside the function “form” at line 130 replace

    if ( !array_intersect( $allowed_roles, $user->roles ) ) {
    return;
    }
    with

    if ( !array_intersect( $allowed_roles, $user->roles ) && !current_user_can( 'setup_network' ) ) {
    return;
    }

    Plugin Author iClyde

    (@iclyde)

    Hi @mahonyson

    My apologies for delayed reply and thank you for your contribution.
    We will include this solution in next release.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Widget settings not showing’ is closed to new replies.