@natseelen – If you go to the editor in your WordPress dashboard under Appearance > Editor, you will see a selection of folders and files off to the right side. Find the folder that says /job_manager/ and click the small black arrow to expand it. Then you will see the file called job-preview.php
Click that file to edit – and do the following:
Find the line that says:
<form method="post" id="job_preview" action="<?php echo esc_url( $form->get_action() ); ?>">
Then add this directly below it:
<?php
/**
* Fires at the top of the preview job form.
*
* @since 1.32.2
*/
do_action( 'preview_job_form_start' );
?>
This will be ABOVE the:
<div class="container">
After the edit, click on save / update – and it should fix your theme. If not, then please reach out to the theme developer and they should be able to help you. The fix was released in the last update – I am not sure why you are still having an issue with yours. Hope this helps.