Okay
  Public Ticket #3153379
Fewer setting options in the WPBakery role manager from Salient - Classic Mode Editor gone?
Closed

Comments

  •  2
    Alex started the conversation

    Hi

    I just relialised that the "Classic Mode" Editor Button for pages and post is gone. I had this problem before and it was just a checkup box in the admin rules of the Salient WPBakery settings. I still can see the checkbox on WPBakery role manager version 6.7.1 but not at version 6.9.1 - and a lot of other setting options for admins are gone for v6.9.1?? (you can see it in the screenshots link below).
    Are here any changes/bugs? How can i enable the "Classic Mode" editor again??

    https://imgur.com/a/tijulWE

  •  279
    Noah replied

    Hi Alex,

    The classic mode editor button should be present regardless of the settings.

    Could you disable your other plugins that are not theme related and see if this improves? If not then give us access to the backend - username password with admin role - we try and figure out the cause of this from that side.

    Thanks.

  •   Alex replied privately
  •  8,839
    Tahir replied

    Thanks for the additional information. Escalating this to the developer for further response.

    Best 


    ThemeNectar Support Team 

  •  1,070
    ThemeNectar replied

    Hey Alex,

    In WPBakery 6.9+, the developers changed it so that the admin user would automatically have all privileges and removed the options associated with limiting access to features. 

    However, there's a known bug with the option to disable the classic editor upgrading from 6.7 to 6.9. If that option was previously enabled, it's incorrectly persisting:

    5783366983.png


    You can correct the issue from your end by adding the following snippet to your child theme functions.php file:

    add_action( 'init', 'salient_child_set_wpb_capabilities' );
    function salient_child_set_wpb_capabilities() {
      $role = get_role( 'administrator' );
      $role->remove_cap( 'vc_access_rules_backend_editor/disabled_ce_editor' );
    }
    

    Once it's working again, the snippet may be removed.

    Kind regards

  •  2
    Alex replied

    Hi
    This works great!

    Thanks a lot
    Alex