This thread is resolved. Here is a description of the problem and solution.
Problem: The client has custom HTML added to their blog for an author box, which is not translating in the Advanced Translation Editor (ATE).
Solution: Firstly, we advised the client that it is not necessary to include meta tags and font links within the custom HTML block, as WordPress adds this information to the site. Instead, we recommended enqueuing the fonts file in the functions.php file of the child theme and adding CSS rules to the style.css file of the child theme.
We then instructed the client to simplify the custom HTML block to only include the necessary divs and paragraphs, which will allow the strings to be automatically translated in the ATE. The client should remove unnecessary HTML tags and structure, leaving only the content that needs translation.
If this solution does not apply to your case, or if it seems outdated, we recommend opening a new support ticket. We also highly recommend checking related known issues, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If you need further assistance, please contact our 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.
.author-section-title {
font-size: 24px; /* Grootte van h2 */
font-weight: bold; /* Dikgedrukt voor "Over de auteur" */
color: #333;
margin: 0 0 20px 0; /* Meer ruimte onder de titel "Over de auteur" */
}
.author-name {
font-size: 24px; /* Grootte van h2 */
color: #333;
margin: 0 0 5px 0; /* Minder ruimte tussen naam en titel */
}
.author-title {
font-size: 16px;
color: #555; /* Een donkerdere grijstint */
font-weight: normal; /* Verwijdert dikgedrukt */
margin: 0 0 20px 0 !important; /* Meer ruimte tussen titel en beschrijving */
}
.author-box p {
margin: 0;
color: #333;
}
</style><div class="author-section"><hr/><p class="author-section-title">Over de auteur</p></div><div class="author-box"><img src="hidden link" alt="Ate Keurentjes"/><div><p class="author-name">Ate Keurentjes</p><p class="author-title">Server Side Tracking Specialist bij TAGGRS</p><p>Ate Keurentjes is een Server Side Tracking specialist bij TAGGRS. Hij heeft ervaring met verschillende Google Tag Manager concepten. Keurentjes redigeert en schrijft sinds 2023 over de nieuwste ontwikkelingen en trends in data verzameling / Server Side Tracking.</p></div></div>
as you can see in the picture, the text above it is translated (as it should be) but the author box html is not.
Languages: English (English )Spanish (Español )German (Deutsch )
Timezone: America/Lima (GMT-05:00)
Hello,
Could you please increase your WP Memory limit to 256M? 128M is the minimum required by WPML.
Your current values are:
PHP Memory Limit 3072M
WP Memory Limit 40M
Add this code to your wp-config.php to increase WP memory:
define('WP_MEMORY_LIMIT', '256M');
Paste it just before:
/ That's all, stop editing! Happy blogging. /
Now, verify the current settings at WPML > Support > WordPress. Then complete the translation again.
These settings can be limited directly by your hosting provider, so I recommend you contact and ask them to modify them directly.
If you can get even higher values It would be great.
https://wpml.org/home/minimum-requirements/
Note: WPML needs a minimum WP Memory limit of 128M to work only under a minimal environment, which means, with a default theme and no other plugins installed.
When you are done with adjusting the limit please try to apply the translation again.
If this will still not solve the issue, please let me know.
I've changed the WP memory limit to 256M. I've also checked this in WordPress. However, the translation is still not working. In another support ticket, we had a problem that JavaScript wasn't translated. At that time, we were working in Elementor and not in Gutenberg. That time we provided you with our WordPress login details. After that, you added something of which I added a screenshots to this ticket. That made it work. Is there also such a solution in this case?
Hi, i tried recreating the issue but i don't want to fill in payment information to translate.
What i did: created post including the html
Translation managemnet --> Translation management
What you need to do, translate automatically --> check if the post (in this case german) is translated (including the html).
Languages: English (English )Spanish (Español )German (Deutsch )
Timezone: America/Lima (GMT-05:00)
You do not need to add any payment information.
I have changed to "Translate what you choose" and opened the content inside the Advanced Translation Editor.
As you can see on the screenshot, your HTML content is not displayed by default on the Advanced Translation Editor and this is why an automatic translation is not possible.
This is expected behavior for the Advanced Translation Editor, as it strips out HTML and PHP and lets translators only translate texts.
You will need to create this translation yourself inside the Advanced Translation Editor by searching for non-visual content inside the text field on the top left of the Advanced Translation Editor.
The issue here is, that the block is unexpectedly rendered inside the Advanced Translation Editor, and filling out the translation field does not work.
The CSS rules should be added to the style.css file of your Child theme.
The only content that your custom HTML should include is:
<div class="author-section">
<hr>
<p class="author-section-title">Over de auteur</p>
</div>
<div class="author-box">
<img src="<em><u>hidden link</u></em>" alt="Ate Keurentjes">
<div>
<p class="author-name">Ate Keurentjes</p>
<p class="author-title">Server Side Tracking Specialist bij TAGGRS</p>
<p>Ate Keurentjes is een Server Side Tracking specialist bij TAGGRS. Hij heeft ervaring met verschillende Google Tag Manager concepten. Keurentjes redigeert en schrijft sinds 2023 over de nieuwste ontwikkelingen en trends in data verzameling / Server Side Tracking.</p>
</div>
</div>
Like this you will be able to translate the strings automatically, as they will show up inside the Advanced Translation Editor.