هذا المستخدم ليس لديه مواضيع مفضلة.
مواضيع المنتدى المفضلة
تم إنشاء مواضيع المنتدى
الحالة |
عنوان
|
مؤيد، مشجع، داعم | أصوات | المقالات | نضارة |
---|---|---|---|---|---|
Translation of WP Jobmanager application forms
بدأ ب: ericH-23 في: English Support |
|
1 | 23 | قبل ساعتين، 1 دقيقة | |
Can't translate "This site uses Passwordless Registration" string
بدأ ب: ericH-23 في: English Support |
|
0 | 3 | قبل 3 ساعات، 38 دقيقة | |
how to translate the two buttons in the BuddyBoss template
بدأ ب: ericH-23 في: English Support |
|
0 | 7 | قبل 3 ساعات، 42 دقيقة | |
rename wp-login-php and url translation
بدأ ب: ericH-23 في: English Support |
|
0 | 14 | قبل 3 ساعات، 43 دقيقة | |
Using the editable application form with WP Jobmanager shows resume in all languages
بدأ ب: ericH-23
في: 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 | قبل أسبوعين، 1 يوم | |
Buddyboss job related jobs shon in second language same job
بدأ ب: ericH-23 في: English Support |
|
1 | 19 | قبل أسبوعين، يومين | |
How automatically copying of acf field of Jobmanager category to other language versions
بدأ ب: ericH-23
في: 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 | قبل 3 أسابيع، 4 أيام | |
A user applicates for a job in EN and can also applicate at the job translations
بدأ ب: ericH-23
في: 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 | قبل 3 أسابيع، 4 أيام | |
Automatic string translation stucks
بدأ ب: ericH-23
في: 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 | قبل 3 أسابيع، 4 أيام | |
WP Jobmanager bookmark in other language empty
بدأ ب: ericH-23 في: English Support |
|
1 | 7 | قبل 3 أسابيع، 6 أيام | |
Applications in WP Jobmanager gives wrong number in dashboard
بدأ ب: ericH-23 في: English Support |
1 | 2 | قبل 4 أسابيع | ||
I duplicate a job to other languages and have several taxonomies
بدأ ب: ericH-23 في: English Support |
|
1 | 11 | قبل 1 شهر | |
WP Jobmanager application form is shown in all languages in the application form at the job edit
بدأ ب: ericH-23
في: 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 | قبل 1 شهر | |
Wp Jobmanager resume manager: resume gives 404
1
2
بدأ ب: ericH-23
في: 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 | قبل 1 شهر | |
I am developing a site using WP Jobmanager and WPML. I want users to select a resume from a dropdown…
بدأ ب: ericH-23
في: 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 | قبل 1 شهر |