Hi,
When I publish a post, I obtain this error.
All is in the last version (WordPress and Enfold), and PHP is the version 7.3.14.
Hey 219innova24hsl,
The issue looks similar to this issue: https://stackoverflow.com/questions/14254943/mbstring-php-and-mb-strimwidth-issue
Try to ask your webhost to enable Multibyte String or mbstring.
Best regards,
Nikko
Hi!
I solved it with the instructions in the post: https://kriesi.at/support/topic/long-post-title-breaks-avia_breadcrumb/#post-321833
And it worked.
But I made an update oft the theme (4.7.6.4 version) and it fail again.
My server provider cant enable Multibyte String or mbstring. Another solution?
Thanks!
Hi 219innova24hsl,
Please try to edit enfold > framework > php > function-set-avia-backend.php and modify the following lines:
replace line 768:
$string = mb_strimwidth($string, 0, $breakpoint) . $pad;
with:
$string = substr($string, 0, $breakpoint) . $pad;
replace line 782:
$string = mb_strimwidth($string, 0, $limit) . $pad;
with:
$string = substr($string, 0, $limit) . $pad;
Let us know if this helps.
Best regards,
Nikko