Add Saved Rows to bottom of BB site.
// Add your Beaver Builder Saved Rows to the bottom of your website
add_action('wmhook_footer_before', 'odw_do_footer_rows');
function odw_do_footer_rows()
{
echo do_shortcode('[fl_builder_insert_layout slug="pre-footer"]');
}