Okay
  Public Ticket #2690468
Hero Caption Title
Closed

Comments

  • Jonathan started the conversation

    Hello

    Good morning, we want to know if there is a way to solve the special character in the title.

  •  1,823
    Support replied

    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

  •   Jonathan replied privately
  •  1,823
    Support replied

    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

  •   Jonathan replied privately
  •  1,823
    Support replied

    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