Skip Navigation

This thread is resolved. Here is a description of the problem and solution.

Problem:
If you're unable to filter the content in the 'Admin texts' by a different amount other than 10, and the dropdown options are not clickable.
Solution:
We are addressing this issue in the upcoming WPML 4.7 release. Please update your WPML to the latest version once it is available. In the meantime, you can use the following workaround to temporarily resolve the issue:

add_action('admin_head', 'fix_wpmlsupp_9971');<br />function fix_wpmlsupp_9971() {<br />  echo ('<style>.ant-select-item-option { pointer-events: auto !important; }</style>');<br />}

This solution might be irrelevant if it's outdated or not applicable to your case. 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 the issue persists, please open a new support ticket.

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.

Tagged: 

This topic contains 2 replies, has 1 voice.

Last updated by Lauren 2 weeks, 2 days ago.

Assisted by: Lauren.

Author Posts
September 19, 2024 at 8:41 pm #16200749

antoninB-4

Hello, thanks, yes that fixed my issue!

Although I truly hate having to create a string translatable for each dynamic content text, I guess I will get used to it...

I have a different issue now - inside the "Admin texts," I am unable to filter the content by a different amount other than 10. I would love to see at least 100 of the text in the table.

(By observing the HTML of the dropdown when I click the "10", the other options are not even clickable. Its not a "a" tag, nor a "button" tag).

Thanks!
Tony

September 19, 2024 at 9:05 pm #16200803

Lauren
Supporter

Languages: English (English )

Timezone: America/New_York (GMT-05:00)

I was able to reproduce this in a clean isntall so I have escalated this to our 2nd tier so that we can find a solution. I will update here as soon as I have more information.

December 6, 2024 at 5:09 am #16484499

Lauren
Supporter

Languages: English (English )

Timezone: America/New_York (GMT-05:00)

This should be resolved with the release of WPML 4.7. I don't have an exact date when that will be, but please update once it is out and let me know if the issue persists.

In the meantime, this workaround may resolve the issue until the update is available:

Using code, to set pointer-events to "auto" for the element ant-select-item-option

add_action('admin_head', 'fix_wpmlsupp_9971');
function fix_wpmlsupp_9971() {
echo ('<style>
.ant-select-item-option {
pointer-events: auto !important;
}</style>');
}