ليس لدى هذا المستخدم أي مواضيع مفضلة.
مواضيع المنتدى المفضلة
مواضيع المنتدى التي تم إنشاؤها
| الحالة |
الموضوع
|
داعم | الأصوات | المشاركات | الحداثة |
|---|---|---|---|---|---|
|
Split: Translation queue shows jobs not found
1
2
بدأه: franciscoR-11
في: English Support
Problem: |
|
2 | 24 | قبل 1 سنة، 7 أشهر | |
|
You can only edit translations assigned to you.
بدأه: franciscoR-11
في: English Support
Problem: Additionally, if a translation job is already assigned to one translator, it cannot be accessed by another unless the assigned translator resigns from the job. For setting up local translators and language pairs, check How to Set Up Local Translators and Language Pairs. The client added that he has more than 300 users that need to be able to edit the translation and it would be to time demanding to manually assigned each user as translator or translation manager. To allow non-admin users to manage translations without being admins, you can add a custom capability to their user roles. Here's a code snippet you can use: function wpml_custom_assign_capability() {
$users = get_users();
foreach ($users as $user) {
if (!in_array('subscriber', $user->roles) && !in_array('admin', $user->roles)) {
if (!user_can($user, 'wpml_manage_translation_management')) {
$user->add_cap('wpml_manage_translation_management');
}
}
}
}
add_action('init', 'wpml_custom_assign_capability');This code will enable the specified users to access WPML > Translation Management and create jobs for themselves, which they can then translate or duplicate. 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 further assistance is needed, please open a new support ticket at WPML support forum. |
|
2 | 10 | قبل 1 سنة، 8 أشهر | |
|
Configure WPML to allow all users to translate manualy
بدأه: franciscoR-11
في: 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 issues persist, please open a new support ticket for personalized assistance. |
|
2 | 2 | قبل 1 سنة، 9 أشهر | |
|
Translated post edit page doesn't show content
بدأه: franciscoR-11 في: English Support |
|
2 | 2 | قبل سنتين، 5 أشهر |