This thread is resolved. Here is a description of the problem and solution.
Problem:
The client needs to translate donation forms from Italian to English using WPML, but only the title of the form is translatable through the WPML interface. The forms are built with a visual builder that is not yet compatible with WPML.
Solution:
We recommend using a custom code snippet to manually assign a language to the form. Here is the code you should use:
add_action( 'template_redirect', function() {<br /> include_once( WP_PLUGIN_DIR . '/sitepress-multilingual-cms/inc/wpml-api.php' );<br /> if( is_admin() ) {<br /> return false;<br /> }<br /> $post_id = 3792;<br /> $type = get_post_type( $post_id );<br /> $trid = wpml_get_content_trid( 'post_' . $type, $post_id );<br /> $language_code = 'es';<br /> $language_args = [<br /> 'element_id' => $post_id,<br /> 'element_type' => 'post_'.$type,<br /> 'trid' => $trid,<br /> 'language_code' => $language_code,<br /> 'source_language_code' => null<br /> ];<br /> do_action( 'wpml_set_element_language_details', $language_args );<br />});
Additionally, it's important to note that the Stripe Payment Element language is determined by the browser's language settings, not the site's language. For more details on translating the donor dashboard, please check the WPML errata page: https://wpml.org/errata/give-donation-plugin-donar-dashboard-always-displays-on-default-language/
If this solution does not resolve your issue or seems 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 https://wpml.org/forums/.
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 3 replies, has 1 voice.
Last updated by 4 days, 10 hours ago.
Assisted by: Osama Mersal.