This thread is resolved. Here is a description of the problem and solution.
Problem:
If you're experiencing an issue where the save button remains inactive when using the Media Translation feature in WPML, and you have Woocommerce and Mollie Payments enabled, the problem might be due to a CSS conflict caused by another plugin.
Solution:
We discovered that the Event Booking Manager for WooCommerce – WpEvently plugin, which is not on our compatibility list (https://wpml.org/plugin/), applies styles to default jQuery UI classes, affecting WPML’s media translation dialog. To resolve this, you can add the following CSS override to your theme’s functions.php file:
function my_custom_admin_inline_css() {<br /> echo '<style><br /> .wpml-media-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button.alignleft:focus,<br /> .wpml-media-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button.alignleft:hover,<br /> .wpml-media-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button.alignright:focus,<br /> .wpml-media-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button.alignright:hover {<br /> background-color: #373737 !important;<br /> color: #fff !important;<br /> }<br /><br /> .wpml-media-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button.alignright {<br /> background-color: #2f7d92 !important;<br /> color: #fff !important;<br /> cursor: pointer !important;<br /> pointer-events: auto !important;<br /> opacity: 1 !important;<br /> }<br /><br /> .wpml-media-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button.alignright:disabled {<br /> border-color: transparent !important;<br /> cursor: not-allowed !important;<br /> }<br /> </style>';<br />}<br />add_action('admin_head', 'my_custom_admin_inline_css');
Alternatively, consider contacting the plugin author for a permanent fix or use a plugin that is fully compatible with WPML.
If this solution does not apply to your case, or if it becomes 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.
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.