Beaver builder hooks are not working with the job manager hook after the post content ends

Hey

We are trying to call the beaver builder hook to execute the wp job manager hook after the post description ends.
But this hook is not render the description content after

Thank You!

Here is the code that tried to render the hook.

function my_content_close() {
add_action(‘single_job_listing_start’, ‘job_manager_listing’,10);
add_action(‘single_job_listing_end’, ‘job_manager_listing_end’,10);
echo ‘

I am right before the closing content div.
’;
}
add_action( ‘fl_content_close’, ‘my_content_close’ );
add_theme_support( ‘job-manager-templates’ );