This is the technical support forum for WPML - the multilingual WordPress plugin.
Everyone can read, but only WPML clients can post here. WPML team is replying on the forum 6 days per week, 22 hours per day.
This topic contains 6 replies, has 2 voices.
Last updated by Raja Mohammed 3 years, 11 months ago.
Assisted by: Raja Mohammed.
| Author | Posts |
|---|---|
| November 26, 2021 at 7:37 am | |
|
Alan Kaussen |
Translation basket is not showing |
| November 29, 2021 at 2:07 pm #10088149 | |
|
Raja Mohammed Supporter
Languages: English (English ) Timezone: Asia/Kolkata (GMT+05:30) |
Hello there, I have tested the issue, It seems like some other plugin is conflicting with WPML. I tried to add and remove translators to the site but none of the changes is not reflecting immediately. To find whether the issue is due to a plugin conflict please follow the below troubleshooting steps Let me know the results. Regards |
| December 1, 2021 at 11:27 am #10104183 | |
|
Alan Kaussen |
I have done the exact. All plugins are disabled right now. Except for WPML with addons & WooCommerce. |
| December 2, 2021 at 1:57 pm #10114089 | |
|
Raja Mohammed Supporter
Languages: English (English ) Timezone: Asia/Kolkata (GMT+05:30) |
I am securing a copy of your site for further debugging. I will keep posted with further updates. Regards |
| December 3, 2021 at 6:48 am #10118745 | |
|
Raja Mohammed Supporter
Languages: English (English ) Timezone: Asia/Kolkata (GMT+05:30) |
The issue is reproduced using the copy of your site on a minimal setup. I have escalated the case to the second tier for a detailed investigation. Regards |
| December 3, 2021 at 9:53 am #10119819 | |
|
Alan Kaussen |
Thank you. |
| December 3, 2021 at 12:57 pm #10121633 | |
|
Raja Mohammed Supporter
Languages: English (English ) Timezone: Asia/Kolkata (GMT+05:30) |
The issue has been fixed on the staging site, To fix the same on the live site please paste the code in the theme functions.php file add_action( 'init', 'add_caps' );
function add_caps() {
$user = wp_get_current_user();
$role = get_role( $user->roles[0] );
if ($role->capabilities["manage_translations"] != TRUE) {
$role->add_cap( 'manage_translations' );
}
}
Once done, Navigate to WPML > Translation Management page, You should be able to see the Translation Basket tab, If it is still invisible refresh the page a couple of times. Once you see the translation basket tab, Remove the code I hope that helps better. Regards |