danieliser

Enable wp_body_open for Bricks Builder

Bricks builder by default doesn’t support wp_body_open hook. This breaks quite a few plugins such as tag managers and analytics etc.

Quick solution is to hook in to the bricks_body action, and make a simple call to wp_body_open()

add_action( 'bricks_body', function () {
    wp_body_open();
}, 11 );
← All posts