Add global footer in Beaver Builder
// Add global footer to all pages. Edits are made to Template titled "Global Footer"
function xmit_global_footer() {
FLBuilder::render_query( array(
'post_type' => 'fl-builder-template',
'p' => 2472
) );
}
add_action( 'fl_after_footer', 'xmit_global_footer' );