• Resolved wellituser

    (@wellituser)


    Hi, since upgrading the Easy Accordion plugin on all sites to the latest version 2.3.4 all Editor level accounts on my websites have lost access to Easy Accordion in the menu.
    I’m running WordPress 6.3.3 and 6.4.3 and the issue is on both versions of WordPress.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Pulak Ahmed

    (@pulak00)

    Hi @wellituser,

    Thanks for contacting us. Hope you are doing great today!

    Yes, you can easily allow the Editors to access the plugin using a code snippet. Add the following snippet at the bottom of the functions.php file of your current theme.

    add_filter( 'sp_easy_accordion_ui_permission', 'sp_easy_accordion_ui_permission_to_editor' );
    
    function sp_easy_accordion_ui_permission_to_editor() {
        return 'edit_others_pages';
    }

    Let us know if it works.

    Have a great day!

    Thread Starter wellituser

    (@wellituser)

    Hi Pulak,
    That fixed the issue perfectly. Thanks for the response.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Editor Access Lost’ is closed to new replies.