PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
themes
/
service-finder
/
job_manager
<?php /** * Notice when job has been submitted. * * This template can be overridden by copying it to yourtheme/job_manager/job-submitted.php. * * @see https://wpjobmanager.com/document/template-overrides/ * @author Automattic * @package wp-job-manager * @category Template * @version 1.31.1 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } global $wp_post_types; switch ( $job->post_status ) : case 'publish' : $jobapplicantspage = service_finder_get_url_by_shortcode('service_finder_job_applicants'); if($jobapplicantspage != '') { $jobapplicantsurl = add_query_arg( array('jobid' => $job->ID ),$jobapplicantspage ); wp_redirect($jobapplicantsurl); exit; }else{ echo wp_kses_post( sprintf( __( '%s listed successfully. To view your listing <a href="%s">click here</a>.', 'service-finder' ), esc_html( $wp_post_types['job_listing']->labels->singular_name ), get_permalink( $job->ID ) ) ); } break; case 'pending' : echo wp_kses_post( sprintf( esc_html__( '%s submitted successfully. Your listing will be visible once approved.', 'service-finder' ), esc_html( $wp_post_types['job_listing']->labels->singular_name ) ) ); break; default : do_action( 'job_manager_job_submitted_content_' . str_replace( '-', '_', sanitize_title( $job->post_status ) ), $job ); break; endswitch; do_action( 'job_manager_job_submitted_content_after', sanitize_title( $job->post_status ), $job );
[+]
..
[-] job-dashboard.php
[edit]
[-] content-single-job_listing.php
[edit]
[-] job-filter-job-types.php
[edit]
[-] job-listings-start.php
[edit]
[-] job-application.php
[edit]
[-] job-application-custom.php
[edit]
[-] job-submitted.php
[edit]
[-] job-preview.php
[edit]
[-] content-single-job_listing-company.php
[edit]
[-] job-listings-end.php
[edit]
[-] job-filters.php
[edit]
[-] content-single-job_listing-meta.php
[edit]
[-] content-job_listing.php
[edit]
[-] job-submit.php
[edit]