Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2032129
Author url
Closed

Comments

  •   MissPims started the conversation
  •  2,699
    PenciDesign replied

    Hi,

    Thank you for purchased our theme and your great words.

    By default, it will redirect to author page if you click on the author name.

    But, if you want to change it to "About Us" page, please add more this code at the end of functions.php of your child theme:

    add_filter( 'author_link', 'penci_modify_author_link', 10, 1 );           
    function penci_modify_author_link( $link ) {          
        $link = 'http://example.com/';
    return $link;                     
    }
    

    Best Regards,

    PenciDesign

  •   MissPims replied privately