Sharing saved draft of an already published page?

Is there an option for sharing a BB page draft of an already published page? Ideally, if a page is being heavily re-organized/redesigned, we would get exec approval before fully publishing those changes by sending out a preview link.

However, we’re not seeing that for BB specific layout saved changes (but not published). The BB Tools Preview Layout doesn’t generate a URL that can be shared. And the Enable Public Preview plugin only
works on draft/unpublished pages through the Edit Page function. It doesn’t register that there’s a saved draft within BB.

I’m facing the same issue here, did you figure out something?

Found this snippet on github on the plugin itself Preview doesn't show any Beaver Builder content · Issue #172 · ocean90/public-post-preview · GitHub

Looks to be working :slight_smile:

add_filter( 'fl_render_content_by_id_can_view', function( $can_view, $post_id ) {
	if ( class_exists( 'DS_Public_Post_Preview' ) ) {
		$post_ids = get_option( 'public_post_preview', array() );
		$post_ids = array_map( 'intval', $post_ids );
		$can_view = ( in_array( $post_id, $post_ids ) ) ? true : $can_view;
	}
	return $can_view;
}, 10, 2 );