Premium WordPress Themes, Templates & Plugins Support WordPress Plugin Support WPBakery Page Builder How to completely remove “Edit with WPBakery Page Builder” link

Viewing 0 reply threads
  • Author
    Posts
    • #9622
      ThemeofWP
      Keymaster

      You can remove “Edit with WPBakery Page Builder” link from all WordPress pages and in admin by adding following code to your WordPress theme’s functions.php file.

      <?php
      function vc_remove_frontend_links() {
        vc_disable_frontend(); // this will disable frontend editor
      }
      add_action( 'vc_after_init', 'vc_remove_frontend_links' );
Viewing 0 reply threads
  • You must be logged in to reply to this topic.