I have same issue, after new WP update i’ve run db update, and now after login I can’t do anything. Im not even admin :/
Disable this
Include the search for native string functions of WordPress
For example: «__(…)» or «_e(…)»
here:
admin.php?page=mw_polylang_strings_settings
Ok, i’ve found solution on my own.
file: ./wp-nested-pages/app/Views/partials/row.php
line: 20
from:
<span class="title"><?php echo $this->post->title; ?></span>
to:
<span class="title"><?php echo apply_filters( 'the_title', $this->post->title ); ?></span>
Then brackets dissapear and current lang will be displayed.
apply_filters( 'the_title', $this->post->title );
After 4 months still nothing?