このユーザーにはお気に入りのトピックがありません。
お気に入りのフォーラムトピック
作成したフォーラムトピック
| ステータス |
トピック
|
サポーター | 声 | 投稿 | 新着度 |
|---|---|---|---|---|---|
|
Split: Translation queue shows jobs not found
1
2
開始者:franciscoR-11
カテゴリ:English Support
Problem: |
|
2 | 24 | 1年、 5ヶ月前 | |
|
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年、 7ヶ月前 | |
|
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年、 7ヶ月前 | |
|
Translated post edit page doesn't show content
開始者:franciscoR-11 カテゴリ:English Support |
|
2 | 2 | 2年、 3ヶ月前 |