Site logo

[Support request] open new tab comment link

Home Forums Support [Support request] open new tab comment link

Home Forums Support open new tab comment link

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1540596
    Kanta

    Hello

    When click on the commentor name his website directly open on my website. I want to open commentor website in a new tab. Please provide css code for this solution.

    Regards

    #1540881
    David
    Staff
    Customer Support

    Hi there,

    try adding this PHP Snippet:

    add_filter( 'get_comment_author_link', 'open_comment_author_link_in_new_window' );
    function open_comment_author_link_in_new_window( $author_link ) {
        return str_replace( "<a", "<a target='_blank'", $author_link );
    }

    Adding PHP:
    https://docs.generatepress.com/article/adding-php/

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.