ahmedkaludi / wp-multilang

16 stars 3 forks source link

The excerpts are not translated in the frontend Query Loop block #52

Closed g4rf closed 5 months ago

g4rf commented 5 months ago

There seems to be a bug with the Excerpts block in the Query Loop block in the frontend, where the excerpts are not translated. Surprisingly it works in the Gutenberg editor in the backend.

grafik

There is a fix for this, where we hook into get_the_excerpt very early to solve this problem. The very early approach should be okay, as every other plugin should await translated strings.

add_filter( 'get_the_excerpt', 'wpm_translate_string', 5);

I added the change to the PR #51 to solve this problem.

Sanjeevsetu commented 5 months ago

Hi @g4rf

Thanks for the PR. We have merged it