Button Job Application Problem
-
I have a problem with the Job Application button, I want to get the details and put a direct link from a URL or Email. I saw in the documents that when changing the job-application.php file to the following:
<?php if ( $apply = get_the_job_application_method() ) :
if ( $apply->type === ‘url’ ) {
$application_href = $apply->url;
} elseif ( $apply->type === ’email’ ) {
$application_href = sprintf( ‘mailto:%1$s%2$s’, $apply->email, ‘?subject=’ . rawurlencode( $apply->subject ) );
}
?>
<div class=”application”>
“><?php _e( ‘Apply for job’, ‘wp-job-manager’ ); ?>
</div>
<?php endif; ?>`I made this change but the button remains in the same way hasn’t changed anything.`
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Button Job Application Problem’ is closed to new replies.