Replies: 0
Hello everyone,
I’ve been trying for a few days to change the popup text that appears when I click on the contact button of the summaries made with wpjobmanager.
From what I have been able to verify (if I’m not mistaken) the code gets it from the file contact-details.php, in the path wp-content / plugins / wp-job-manager-resumes / contact-details.php
Here are the code:
<?php
global $resume_preview;
if ( $resume_preview ) {
return;
}
if ( resume_manager_user_can_view_contact_details( $post->ID ) ) :
wp_enqueue_script( 'wp-resume-manager-resume-contact-details' );
?>
<div class="resume_contact">
<a href="#resume-dialog" class="small-dialog popup-with-zoom-anim button"><i class="fa fa-envelope"></i> <?php esc_html_e( 'Contacte', 'workscout' ); ?></a>
<div id="resume-dialog" class="small-dialog zoom-anim-dialog mfp-hide apply-popup">
<div class="small-dialog-headline">
<h2><?php esc_html_e('Envia missatge','workscout'); ?></h2>
</div>
<div class="small-dialog-content">
<?php do_action( '<strong>resume_manager_contact_details</strong>' ); ?>
</div>
</div>
</div>
<?php else : ?>
<?php get_job_manager_template_part( 'access-denied', 'contact-details', 'wp-job-manager-resumes', RESUME_MANAGER_PLUGIN_DIR . '/templates/' ); ?>
<?php endif; ?>
Could someone help me out?