Cet utilisateur n'a pas de sujets favoris.
Sujets préférés du forum
Sujets de forum créés
Statut |
Sujet
|
Supporter | Les voix | Articles | Fraîcheur |
---|---|---|---|---|---|
Translation of WP Jobmanager application forms
Démarré par: ericH-23 en: English Support |
|
1 | 23 | Il y a 7 heures et 37 minutes | |
Can't translate "This site uses Passwordless Registration" string
Démarré par: ericH-23 en: English Support |
|
0 | 3 | Il y a 9 heures et 14 minutes | |
how to translate the two buttons in the BuddyBoss template
Démarré par: ericH-23 en: English Support |
|
0 | 7 | Il y a 9 heures et 18 minutes | |
rename wp-login-php and url translation
Démarré par: ericH-23 en: English Support |
|
0 | 14 | Il y a 9 heures et 19 minutes | |
Using the editable application form with WP Jobmanager shows resume in all languages
Démarré par: ericH-23
en: English Support
Problem: If this solution does not apply to your case, or if it seems outdated, we highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If the issue persists, please do not hesitate to open a new support ticket at WPML support forum for further assistance. |
|
0 | 12 | Il y a 2 semaines et 2 jours | |
Buddyboss job related jobs shon in second language same job
Démarré par: ericH-23 en: English Support |
|
1 | 19 | Il y a 2 semaines et 2 jours | |
How automatically copying of acf field of Jobmanager category to other language versions
Démarré par: ericH-23
en: English Support
Problem: Please note that this solution might be outdated or not applicable to your specific case. If this does not resolve your issue, we highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If further assistance is needed, please open a new support ticket at WPML support forum. |
|
1 | 9 | Il y a 3 semaines et 4 jours | |
A user applicates for a job in EN and can also applicate at the job translations
Démarré par: ericH-23
en: English Support
Problem: Please note that this solution might be irrelevant if it's outdated or not applicable to your case. We highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If the issue persists, please open a new support ticket at WPML support forum. |
|
1 | 7 | Il y a 3 semaines et 4 jours | |
Automatic string translation stucks
Démarré par: ericH-23
en: English Support
Problem: If this solution does not resolve your issue or seems irrelevant due to updates or differences in your case, we highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If problems persist, please open a new support ticket at WPML support forum for further assistance. |
|
1 | 7 | Il y a 3 semaines et 4 jours | |
WP Jobmanager bookmark in other language empty
Démarré par: ericH-23 en: English Support |
|
1 | 7 | Il y a 3 semaines et 6 jours | |
Applications in WP Jobmanager gives wrong number in dashboard
Démarré par: ericH-23 en: English Support |
1 | 2 | Il y a 4 semaines et 1 jour | ||
I duplicate a job to other languages and have several taxonomies
Démarré par: ericH-23 en: English Support |
|
1 | 11 | Il y a 1 mois | |
WP Jobmanager application form is shown in all languages in the application form at the job edit
Démarré par: ericH-23
en: English Support
Problem: You are developing a site using WP Job Manager and WPML and have encountered an issue where the application form in the job edit form displays in all languages instead of only the form of the current language. Solution: To resolve this issue, we recommend modifying the code to ensure the application form displays only in the current language. Please follow these steps after making a full site backup: 1) Navigate to the wp-content/plugins/wp-job-manager-applications/includes/ folder. wp-job-manager-applications-functions.php file for editing. From function get_application_forms() { $posts = new WP_Query( array( 'post_type' => 'job_application_form', 'posts_per_page' => - 1, 'suppress_filters' => true, 'orderby' => 'title', 'order' => 'ASC', ) ); $default_form = WP_Job_Manager_Applications_Default_Form::get_default_form(); if ( $posts->post_count <= 1 ) { return null; } $application_forms = []; if ( array_key_exists( 'ID', $default_form ) ) { $application_forms[ $default_form['ID'] ] = $default_form['post_title']; } foreach ( $posts->posts as $post ) { $application_forms[ $post->ID ] = $post->post_title; } return apply_filters( 'job_application_forms', $application_forms ); } To function get_application_forms() { $posts = new WP_Query( array( 'post_type' => 'job_application_form', 'posts_per_page' => - 1, 'suppress_filters' => false, // replace true with false 'orderby' => 'title', 'order' => 'ASC', ) ); $default_form = WP_Job_Manager_Applications_Default_Form::get_default_form(); if ( $posts->post_count < 1 ) { // replace <= with < return null; } $application_forms = []; /* comment out this part if you don't want to see the default form in other languages if ( array_key_exists( 'ID', $default_form ) ) { $application_forms[ $default_form['ID'] ] = $default_form['post_title']; }*/ foreach ( $posts->posts as $post ) { $application_forms[ $post->ID ] = $post->post_title; } return apply_filters( 'job_application_forms', $application_forms ); } If this solution does not resolve your issue or seems outdated, we highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If the problem persists, please do not hesitate to open a new support ticket at WPML support forum. |
|
0 | 6 | Il y a 1 mois | |
Wp Jobmanager resume manager: resume gives 404
1
2
Démarré par: ericH-23
en: English Support
Problem: If you're experiencing a 404 error when a non-admin user tries to access a resume in a different language on your site using WP Job Manager's Resume Manager, it might be due to the translation of the resume post type's slug. Admin users do not face this issue because they bypass certain permission checks. Solution: We recommend following these steps to resolve the issue: 1) Navigate to the wp-content/plugins/wp-job-manager-resumes/includes/ folder. class-wp-resume-manager-post-types.php file for editing. $rewrite = [ 'slug' => _x( 'resume', 'Resume permalink - resave permalinks after changing this', 'wp-job-manager-resumes' ), 'with_front' => false, 'feeds' => false, 'pages' => false, ]; To: $rewrite = [ 'slug' => 'resume', 'with_front' => false, 'feeds' => false, 'pages' => false, ]; 4) Go to WPML>>Settings>>Slug translations and ensure that "Translate custom post and taxonomy base slugs (via WPML String Translation)." option is selected. If this solution does not apply to your case, or if it seems outdated, we highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If issues persist, please open a new support ticket. |
|
0 | 17 | Il y a 1 mois | |
I am developing a site using WP Jobmanager and WPML. I want users to select a resume from a dropdown…
Démarré par: ericH-23
en: English Support
Problem: The client is developing a site using WP Job Manager and WPML and encountered an issue where the dropdown list for selecting resumes shows all language versions instead of just the current language version. Solution: We recommended the client make specific changes in the code to ensure the dropdown only displays resumes in the current language. Here are the steps: 1) Navigate to the wp-content/plugins/wp-job-manager-resumes/includes/ folder. class-wp-resume-manager-apply.php file for editing. $args = apply_filters( 'resume_manager_get_application_form_resumes_args', [ 'post_type' => 'resume', 'post_status' => [ 'publish', 'hidden' ], 'ignore_sticky_posts' => 1, 'posts_per_page' => -1, 'orderby' => 'date', 'order' => 'desc', 'author' => get_current_user_id(), ] ); To: $args = apply_filters( 'resume_manager_get_application_form_resumes_args', [ 'post_type' => 'resume', 'post_status' => [ 'publish', 'hidden' ], 'ignore_sticky_posts' => 1, 'posts_per_page' => -1, 'orderby' => 'date', 'order' => 'desc', 'author' => get_current_user_id(), 'suppress_filters' => false ] ); Please ensure to back up your site before making these changes. If this solution does not resolve your issue or seems outdated, we recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If further assistance is needed, please open a new support ticket at WPML support forum. |
|
0 | 6 | Il y a 1 mois |