• Resolved wolfweb95

    (@wolfweb95)


    Is it possible to disable the plugin, when Elementor is used? Elementor is using the tinymce Editor on “text editor” Blocks. Therefore the blocks in elementor won’t work anymore when your plugin is active.

    I am using the Markdown Format only for posts, since this is better for easy writing and for using AI.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Pierre-Henri Lavigne

    (@peter202202)

    Good day @wolfweb95 🐺

    I can’t confirm with the latest setup, that should work following this tutorial :
    https://www.markup-markdown.com/wordpress-tutorials/setting-custom-post-type/

    In short: the plugin Markup Markdown automatically activates the markdown mode with public post types and custom post types. If you want to keep Gutenberg or any other builder for your pages for example, you have to disable it with the following snippet in your theme’s functions.php for example :

    add_action('init', function() {
    remove_post_type_support('page', 'markup_markdown');
    });

    Please give it a try when you can, that should work I hope 🙏

    Plugin Author Pierre-Henri Lavigne

    (@peter202202)

    I haven’t heard from you for a while @wolfweb95 so I’m gonna mark this topic as solved.

    I tested with the Elementor plugin from the WordPress repository and I couldn’t reproduce your issue. As explained previously you need to disable the markdown editor with the specific post type where you want to use Elementor. You can’t mixed both if that what you mean, at least at the moment.

    You can use the Code Snippet plugin with this snippet to perform quick tests.

    Kind regards

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Elementor Support’ is closed to new replies.