- Status
- Resolved
- Reported for
- WPML String Translation 3.1.0
- Resolved in
- 3.1.1.
Overview of the issue
If you want to translate strings which default language are not English, you will see that the Translate selected strings section is empty and you can not add any string into the Translation Basket.
Workaround
As a temporary workaround, please add the following code into your functions.php file after making a full backup of your site.
add_action('admin_head', 'wpml_admin_css');
function wpml_admin_css() {
echo '<style>
#icl-tr-opt tbody tr { display: table-row !important; }
</style>';
}