• Resolved kenedyt

    (@kenedyt)


    Environment: Multisite

    Issue: The UAE admin menu icon is not displayed in the WordPress sidebar. The menu item appears as plain text “UAE” without any icon.

    Root cause: In classes/class-uael-admin.php line 427, the plugin uses:

    wp_add_inline_style( 'wp-admin', $custom_css );
    

    In WordPress 6.9, the wp-admin style handle was changed to a dependency-only handle (no source file). This means wp_add_inline_style() attached to it never renders output.

    Reference: wp-includes/script-loader.php line 1630:

    $styles->add( 'wp-admin', false, array( 'dashicons', 'common', ... ) );
    

    Fix: Change the handle from 'wp-admin' to 'common' (which has a real source file and is always loaded in admin):

    wp_add_inline_style( 'common', $custom_css );
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Dhruv

    (@dpandya)

    Hi @kenedyt,

    Thank you for taking the time to report this and for sharing the technical details.

    I tested this on my end using WordPress 6.9 (Multisite) along with the latest version of Ultimate Addons for Elementor, and the UAE menu icon is displaying correctly in the admin sidebar. I was not able to reproduce the issue you described.

    Here is a quick screencast from my test environment for reference:
    https://share.zight.com/v1u7rBXd

    Since this does not appear to be happening consistently, it may be related to a specific configuration, plugin conflict, or admin styling being modified on your setup.

    Could you please share:

    • A screenshot or short screencast showing the missing icon in the admin sidebar
    • The WordPress version, UAE version, and any other active plugins that may modify the admin UI

    If you prefer to share these details privately, you’re also welcome to reach out through our support form here:
    👉 https://ultimateelementor.com/contact/

    Once we have a bit more context, we’ll be happy to look into it further.

    Best regards,
    Dhruv – BSF Support Team

    Plugin Support Dhruv

    (@dpandya)

    Hi @kenedyt,

    Just checking in, since we haven’t heard back from you. I’ll go ahead and mark this thread as resolved for now.

    If you’re still experiencing the issue, please feel free to share the requested details here and we’ll be happy to take another look.

    Best regards,
    Dhruv – BSF Support Team

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.