• Resolved pitiponk

    (@pitiponk)


    Hello !

    I’m using Customizr 3.4.23 (Free) with a child theme.
    I’d like to change the title “About” in the Customizr author box below my posts… How can I do ?
    It’s probably simple, but I’m still learning to play with the code. 🙂

    Thanks for your help !

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,
    Add this to your child theme’s functions.php and chagne to suit your needs.

    add_filter('tc_post_footer','my_author_header');
    function my_author_header($content){
       return str_replace("About","A short bio of",$content);
    }
    Thread Starter pitiponk

    (@pitiponk)

    Works perfectly !

    Thank you very much 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Author box – Change the title’ is closed to new replies.