This thread is resolved. Here is a description of the problem and solution.
Problem:
If you're experiencing issues with content not being translated when using the Bricks builder, this might be due to a specific problem with the Bricks builder plugin.
Solution:
We recommend you try the following workaround:
1. Open the
app/public/wp-content/themes/bricks/includes/ajax.php
file.
2. Inside
Ajax::update_bricks_postmeta()
, around line 1233, replace the following snippet:
if ( $is_bricks_postmeta && ! Capabilities::current_user_can_use_builder( $object_id ) ) {<br />return false;<br />}
With:
if ( $is_brics_postmeta && ! Capabilities::current_user_can_use_builder( $object_id ) ) {<br />// WPML Workaround for compsupp-7377<br />if ( class_exists("Sitepress") ) {<br />return $check;<br />}<br />return false;<br />}
For more details, check the related known issue on WPML Errata.
Please note that this solution might be outdated or not applicable to your specific case. We highly recommend checking the 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.
This topic is split from https://wpml.org/forums/topic/translate-alt-text/
This topic contains 6 replies, has 2 voices.
Last updated by 5 months, 4 weeks ago.
Assisted by: Dražen Duvnjak.