Guest User

Untitled

a guest
May 25th, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. In this case, you have to deactivate license on the WP installation manually. You can do so by following these steps:
  2.  
  3. 1) Add the following code to your theme functions.php:
  4.  
  5. add_action( 'init', function () {
  6. if ( isset( $_GET['forcedeactivate'] ) ) {
  7. delete_option( 'vc_license_activation_key' );
  8. delete_option( 'wpb_js_js_composer_purchase_code' );
  9. }
  10. } );
  11.  
  12. 2) Login into your website dashboard and visit: website_domain_here/wp-admin/index.php?forcedeactivate
  13.  
  14. 3) Remove the code added in step 1.
  15.  
  16. 4) Login into our support portal: http://support.wpbakery.com/ and under licenses: http://support.wpbakery.com/licenses deactivate it from the existing url.
  17.  
  18. 5) Activate the license as per: https://vc.wpbakery.com/video-academy/activate-visual-composer-wordpress-license/
Add Comment
Please, Sign In to add comment