Comments Jonathan started the conversationFebruary 13, 2021 at 2:20pmHello Good morning, we want to know if there is a way to solve the special character in the title. 1,973Support repliedFebruary 14, 2021 at 6:13pmHi, to enable special characters try: - (recommended) install the satelite child theme, go to functions.php and uncomment the first version of satelite_span_wordwrap function under /*** Uncomment this if you are using multibyte character sets ***/ - simply go to functions.php in the theme and replace satelite_span_wordwrap with if( !function_exists('satelite_span_wordwrap') ){ function satelite_span_wordwrap( $param_text_input ){ if( empty( $param_text_input ) ){ return '<span></span>'; } $word_wrapped = ""; $mb_len = mb_strlen( $param_text_input ); for( $idx = 0; $idx < $mb_len; $idx++) { $mb_character = mb_substr( $param_text_input, $idx, 1); $word_wrapped .= '<span>' . $mb_character . '</span>'; } return $word_wrapped; } } Thank you. Clapat Support https://www.clapat.com/ Review Envato Item Support Policy Jonathan replied privately 1,973Support repliedMarch 29, 2021 at 1:52pmHello Jonathan,if you can provide wp admin access in a private comment (wp admin url, username & password)Thank you. Clapat Support https://www.clapat.com/ Review Envato Item Support Policy Jonathan replied privately 1,973Support repliedMarch 29, 2021 at 2:05pmHello Jonathan, we solved the pb in the functions.php from child themeThank you. Clapat Support https://www.clapat.com/ Review Envato Item Support Policy Sign in to reply ...
Hello
Good morning, we want to know if there is a way to solve the special character in the title.
Hi,
to enable special characters try:
- (recommended) install the satelite child theme, go to functions.php and uncomment the first version of satelite_span_wordwrap function under
/*** Uncomment this if you are using multibyte character sets ***/
- simply go to functions.php in the theme and replace satelite_span_wordwrap with
if( !function_exists('satelite_span_wordwrap') ){ function satelite_span_wordwrap( $param_text_input ){ if( empty( $param_text_input ) ){ return '<span></span>'; } $word_wrapped = ""; $mb_len = mb_strlen( $param_text_input ); for( $idx = 0; $idx < $mb_len; $idx++) { $mb_character = mb_substr( $param_text_input, $idx, 1); $word_wrapped .= '<span>' . $mb_character . '</span>'; } return $word_wrapped; } }
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Hello Jonathan,
if you can provide wp admin access in a private comment (wp admin url, username & password)
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Hello Jonathan, we solved the pb in the functions.php from child theme
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy