Người dùng này không có chủ đề yêu thích nào.
Chủ đề diễn đàn yêu thích
Chủ đề diễn đàn đã tạo
| Trạng thái |
Chủ đề
|
Người hỗ trợ | Ý kiến | Bài viết | Mới nhất |
|---|---|---|---|---|---|
|
Split: Translation queue shows jobs not found
1
2
Được bắt đầu bởi: franciscoR-11
trong: English Support
Problem: |
|
2 | 24 | 1 year, 7 months trước | |
|
You can only edit translations assigned to you.
Được bắt đầu bởi: franciscoR-11
trong: 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 year, 8 months trước | |
|
Configure WPML to allow all users to translate manualy
Được bắt đầu bởi: franciscoR-11
trong: 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 year, 8 months trước | |
|
Translated post edit page doesn't show content
Được bắt đầu bởi: franciscoR-11 trong: English Support |
|
2 | 2 | 2 years, 5 months trước |