Hello,
I had the same issue with a french accent :
[repeater add-label:Ajouter_à_assurer remove-label:- index:0 min:0]
Finally, I found the problem, but it’s not a “Cf7 Fields Repeater” bug. It’s a CF7 bug : CF7 doesn’t allow UTF8 chars in the shortcodes except for options like in the select shortcode (and between ” or ‘)
This line is faulty :
$pattern = '%^([-+*=0-9a-zA-Z:.!?#$&@_/|\%\r\n\t ]*?)((?:[\r\n\t ]*"[^"]*"|[\r\n\t ]*\'[^\']*\')*)$%';
(includes/shortcodes.php into shortcode_parse_atts)
It should be :
$pattern = '%^([-+*=\pL\pN\pM:.!?#$&@_/|\%\r\n\t ]*?)((?:[\r\n\t ]*"[^"]*"|[\r\n\t ]*\'[^\']*\')*)$%u';
(replace 0-9a-zA-Z by \pL\pN\pM and put a ‘u’ at the end to enable utf8)
Naji : are you in touch with CF7 staff or should I try to contact them ?
Thanks