• Resolved bea68

    (@bea68)


    Hello, I want to enable Gutenberg Editor for Events Manager Plugin.

    I found this code: define(‘EM_GUTENBERG’, true);
    But unfortunately it doesn’t work.

    Can someone help me please? Thanks a lot!

    Greetings from Germany

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Worked for me. In site’s wp-config.php

    define( 'AUTH_KEY',         'put your unique phrase here' );
    define( 'SECURE_AUTH_KEY',  'put your unique phrase here' );
    define( 'LOGGED_IN_KEY',    'put your unique phrase here' );
    define( 'NONCE_KEY',        'put your unique phrase here' );
    define( 'AUTH_SALT',        'put your unique phrase here' );
    define( 'SECURE_AUTH_SALT', 'put your unique phrase here' );
    define( 'LOGGED_IN_SALT',   'put your unique phrase here' );
    define( 'NONCE_SALT',       'put your unique phrase here' );
    define('EM_GUTENBERG', true);

    I’ve then made a reuseable block with all the style I want using [event] shortcodes combined with #_ATT{} for extra functionality.

    • This reply was modified 6 years, 2 months ago by Will Pom.
    • This reply was modified 6 years, 2 months ago by Will Pom.
    Thread Starter bea68

    (@bea68)

    Thank you, now it works!

    • This reply was modified 6 years, 2 months ago by bea68.
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Enable Gutenberg’ is closed to new replies.