Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unyson Page Builder Not Working #3660

Open
mattharms87 opened this issue Dec 6, 2018 · 5 comments
Open

Unyson Page Builder Not Working #3660

mattharms87 opened this issue Dec 6, 2018 · 5 comments

Comments

@mattharms87
Copy link

I'm running Kerge theme, and the Unyson page builder stopped working abruptly. I've seen similar issues on this forum and tried some initial fixes, but nothing seems to be working.

@ImprobableCode
Copy link

What WordPress version are you running ? can you do anything? more details required

@mattharms87
Copy link
Author

I think I figured out the issue. Looks like it Unyson is not yet compatible with Wordpress 5.0. Will try to install a plugin to go back to the classic editor.

@lmpixelsteam
Copy link

I think I figured out the issue. Looks like it Unyson is not yet compatible with Wordpress 5.0. Will try to install a plugin to go back to the classic editor.

Yes, we have provided this solution to you: "Please install and activate this plugin - https://wordpress.org/plugins/classic-editor/ , then you can use the Unyson Visual Page Builder. Thanks."

@danyj
Copy link
Contributor

danyj commented Dec 7, 2018

Add this in functions.php and dont worry about GB for now until this ThemeFuse/Unyson-PageBuilder-Extension#110 is out

/*
 * Disable block editor
 * in case you need some logic see:
 * https://gist.github.com/danyj/ec00057550fd6f73995ab2f8fc8b729f
 */
if (!function_exists('_thz_filter_disable_block_editor_pt')){
	function _thz_filter_disable_block_editor_pt( $use_block_editor, $post_type ){
	  
	  $use_block_editor = false;
	  return  $use_block_editor;
	  
	}
}

add_filter( 'use_block_editor_for_post_type', '_thz_filter_disable_block_editor_pt', 10, 2 );

@anandspybs
Copy link

I had the same problem, but I have fixed it. You need to do:

  1. Deactivate the plugin (Unyson)
  2. Delete the plugin
  3. Delete the cache
  4. Install again.
    Now that would be working fine.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants