aslan_eident
Forum Replies Created
-
One of our WooCommerce clients have also be experiencing this PayPal payment failure.
“PayPal Pro payment failed (Correlation ID: 567a0e83e56b6). Payment was rejected due to an error: (10536) “The transaction was refused as a result of a duplicate invoice ID supplied. Attempt with a new invoice ID” Order status changed from Pending payment to Failed.”
Checking to see if the setting is enabled.
Forum: Plugins
In reply to: [WP Job Manager] The link you followed has expired.If your theme has this directory
/wp-contents/themes/YOUR-ACTIVE-THEME/job_manager, then copy the contents of/wp-contents/pluging/wp-job-manager/templatesto
/wp-contents/themes/YOUR-ACTIVE-THEME/job_manager.However, if you made modifications to any job manager template files in your theme, you will lose the changes. Since I copied the files, the display of the job postings changed. We must have copied the template files into the theme to customize the job posting display.
Forum: Plugins
In reply to: [WP Job Manager] The link you followed has expired.I fixed it. I replaced the files in the theme/job_manager with all the new files in the plugins/wp-job-manager/templates. Works fine now.
Forum: Plugins
In reply to: [WP Job Manager] The link you followed has expired.We are also experiencing the same issue. We inserted the code after the form element as instructed.
<?php
/**
* Job listing preview when submitting job listings.
*
* This template can be overridden by copying it to yourtheme/job_manager/job-preview.php.
*
* @see https://wpjobmanager.com/document/template-overrides/
* @author Automattic
* @package WP Job Manager
* @category Template
* @version 1.27.0
*/if ( ! defined( ‘ABSPATH’ ) ) {
exit; // Exit if accessed directly
}
?>
<form method=”post” id=”job_preview” action=”<?php echo esc_url( $form->get_action() ); ?>”>
<div class=”job_listing_preview_title”>
<input type=”submit” name=”continue” id=”job_preview_submit_button” class=”button job-manager-button-submit-listing” value=”<?php echo apply_filters( ‘submit_job_step_preview_submit_text’, __( ‘Submit Listing’, ‘wp-job-manager’ ) ); ?>” />
<input type=”submit” name=”edit_job” class=”button job-manager-button-edit-listing” value=”<?php _e( ‘Edit listing’, ‘wp-job-manager’ ); ?>” />
<h2><?php _e( ‘Preview’, ‘wp-job-manager’ ); ?></h2>
</div>
<div class=”job_listing_preview single_job_listing”>
<h1><?php wpjm_the_job_title(); ?></h1><?php get_job_manager_template_part( ‘content-single’, ‘job_listing’ ); ?>
<input type=”hidden” name=”job_id” value=”<?php echo esc_attr( $form->get_job_id() ); ?>” />
<input type=”hidden” name=”step” value=”<?php echo esc_attr( $form->get_step() ); ?>” />
<input type=”hidden” name=”job_manager_form” value=”<?php echo $form->get_form_name(); ?>” />
</div>
</form>
<?php
/**
* Fires at the top of the preview job form.
*
* @since 1.32.2
*/
do_action( ‘preview_job_form_start’ );
?>