Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter jujutou

    (@jujutou)

    Of course !

    In the following file: WP-Job-Manager/templates/job-application.php
    You have this code:

    <?php if ( $apply = get_the_job_application_method() ) :
    	wp_enqueue_script( 'wp-job-manager-job-application' );
    	?>
    	<div class="job_application application">
    		<?php do_action( 'job_application_start', $apply ); ?>
    
    		<input type="button" class="application_button button" value="<?php esc_attr_e( 'Apply for job', 'wp-job-manager' ); ?>" />
    
    		<div class="application_details">
    			<?php
    				/**
    				 * job_manager_application_details_email or job_manager_application_details_url hook
    				 */
    				do_action( 'job_manager_application_details_' . $apply->type, $apply );
    			?>
    		</div>
    		<?php do_action( 'job_application_end', $apply ); ?>
    	</div>
    <?php endif; ?>

    The following code is used to display the button under which this scrolls the text.
    <input type=”button” class=”application_button button” value=”<?php esc_attr_e( ‘Apply for job’, ‘wp-job-manager’ ); ?>” />

    and the following code is the message :
    <div class=”application_details”>…</div>

    So you just need to replace this code with your personal form code to embed it. And it works pretty well for me!
    That’s what happens :

    <?php if ( $apply = get_the_job_application_method() ) :
    	wp_enqueue_script( 'wp-job-manager-job-application' );
    	?>
    	<div class="job_application application">
    		<?php do_action( 'job_application_start', $apply ); ?>
    
    		<div class="bt-slide"><input type="button" class="application_button button" value="<?php esc_attr_e( 'Apply for job', 'wp-job-manager' ); ?>" /></div>
    		<div class="blockMasqueform">
    			<?php echo qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage("[:fr]".do_shortcode( '[caldera_form id="XXXXXXXXXX"]' )."[:][:en]".do_shortcode( '[caldera_form id="XXXXXXXXX"]' )."[:]");?>
    
    		</div>
    		<?php do_action( 'job_application_end', $apply ); ?>
    	</div>
    <?php endif; ?>

    Don’t pay attention to the “qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage”, because I’m using a language changer plugin. But you don’t need that to embed your form.

    And I put XXXXX in the id of the house form (caldera form), you must put your personal id (or your other plugin)

    Thread Starter jujutou

    (@jujutou)

    Hello,

    Thank you. I doubt you can help me modify the code.
    But you helped me find the file to modify for this parameter. I could not identify the file that induced this function!

    I managed to modify the code to insert my personal form!
    Thank you !

    (I don’t know if I have the right to explain how I made the change?)

    Thread Starter jujutou

    (@jujutou)

    For example on this page of my site: https://cri1149.fr/poste/agent-de-laboratoire/
    At the end of the job posting, there is a button marked “Postuler”.
    Then a message opens indicating to write to the email address to apply.
    I would like to replace this message with my home form.
    I am looking for where this message is in the plugin files.

    Thread Starter jujutou

    (@jujutou)

    Hello,

    Precisely, I do not use the premium plugins! I use the free version!
    And I would like to be able to modify the application submission forum in the free version (to put my own form generated with Caldera form)

    Thread Starter jujutou

    (@jujutou)

    Hello,
    Thank you for your reply !

    Indeed, you are right, the Zoom links appear with the default WordPress themes (Twenty Nineteen and Seventeen).
    It doesn’t seem to work with themes such as Divi or Extra (but the site is completely broken with these themes so it must be missing settings)

    Does that mean my theme is the problem?
    Is there a solution ?
    Thank you !

    Thread Starter jujutou

    (@jujutou)

    Hello,
    Thank you for your reply !
    I’m fine and you?

    This “remove export link” plugin is not installed on our site.
    I allow myself a small correction:
    The export events button is available at the bottom of the Weeks / Months / Days and List pages:
    https://cri1149.fr/p-evenements/evenements-scientifique/?tribe_event_display=list&tribe-bar-date=2021-07-15

    But it does not appear in a particular event:
    https://cri1149.fr/evenement/les-jeudis-de-la-sfi-webinars/2021-08-19/

    There must be a button, share, or row changed, but I can’t find where?
    If you think you can help me
    Thank you !

Viewing 6 replies - 1 through 6 (of 6 total)