• Hi,

    Firstly, thank you for creating the plugin and the theme (i have the pro version!)

    Can Kadence Row layout be used as the gutenberg default block? eg., instead of the default paragraph block? I create a LOT of websites (testing purposes) and use the Kadence Row a lot so it would be really helpful.

    Thanks and have a great day!

    yours sincerely,

    Nick

Viewing 1 replies (of 1 total)
  • Plugin Support karlalevelup

    (@karlalevelup)

    Hello Nick,

    Thank you for reaching out to us.

    There is no built-in option to do that but you may use a code snippet to use the Row Layout block every time you add a new post. For code reference, you may refer to this thread answer.

    You can use the Code Snippets plugin and use this code:

    function use_row_layout_first() {
        $post_type_object = get_post_type_object( 'post' );
        $post_type_object->template = array(
            array( 'kadence/rowlayout' ),
        );
    }
    add_action( 'init', 'use_row_layout_first' );

    Hope this helps.

    Regards,
    Karla

Viewing 1 replies (of 1 total)
  • The topic ‘Can Kadence Row layout be used as the gutenberg default block?’ is closed to new replies.