• Resolved marco3253

    (@marco3253)


    I guess this is not compatible with the last version of WordPress.
    Old shops are showing but it’s not possible to add a new one, it says “impossibile to save/publish”.

    any news?

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Tijmen Smit

    (@tijmensmit)

    It works fine with a default WP theme for me, but some people do have issues with bugs / strange errors that I can’t really explain.

    You can disable Gutenberg by adding this code to the functions.php inside your active theme folder.

    add_filter( 'wpsl_post_type_args', 'custom_post_type_args' );
    
    function custom_post_type_args( $args ) {
        
        $args['show_in_rest'] = false;
        
        return $args;
    }

    If you disable other plugins the issue remains?

    Using the old editor also fixes it?

    Thread Starter marco3253

    (@marco3253)

    Thank you, disabling Gutenberg worked and now it’s saving correctly.

    Thanx!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Compatibility with wordpress 5.0.1’ is closed to new replies.