• Azragh

    (@azragh)


    I somehow can’t duplicate slides, the controls in the right click menu in the document tree don’t allow duplication (ctrl + shift + d doesn’t work either), and the add slide button simply does nothing, it just deselects the slider. Only thing I changed was disabling all slider types except “flexible”. But happens with the other ones too.

    New WP installation, no conflicting plugins, no errors in console.. ??

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

    (@binsaifullah)

    Hi,

    thanks for your message, can you please see this screenshot, maybe it can help you? thanks

    Thread Starter Azragh

    (@azragh)

    Thank you for your effort, but sadly not. On a static slider everything works, I meant the flexible option. There I don’t find “slide items” in the sidebar on the right side and the + button doesn’t work. I can see changes in the DOM, but something seems to break as the slider gets deselected and no new item added.

    Edit: found the culprit. Disabled some blocks via Theme which I never use. Removing this lines, and everything works again:

    // -> https://rudrastyh.com/gutenberg/remove-default-blocks.html#blacklist-blocks

    function misha_blacklist_blocks( $allowed_blocks ) {
    ? $blocks = WP_Block_Type_Registry::get_instance()->get_all_registered();
    ? unset( $blocks[ 'core/pullquote' ] );
    ? unset( $blocks[ 'core/verse' ] );
    ? return array_keys( $blocks );
    }
    add_filter( 'allowed_block_types_all', 'misha_blacklist_blocks' );

    • This reply was modified 4 weeks, 1 day ago by Azragh.
Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.