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 #2780419
Dofollow and NoFollow link
Closed

Comments

  • tuyenpc started the conversation

    Hello.

    I noticed that soledad themes are setting user-generated links in comments section as nofollow by default. Is there an option in the customizer that allows me to set this section to dofollow?
    Thanks

  •  2,495
    PenciDesign replied

    Hi,

    By default, WordPress will be added rel="no-follow ugc" to the comment text link. If you want to remove this, please install Code Snippet Plugin, then create a new snippet with the following content:

    function tuyenpc_remove_nofollow($text) {
       $text = preg_replace("/(<a[^>]*[^\s])(\s*nofollow ugc\s*)/i", "$1", $text);
       $text = preg_replace("/(<a[^>]*[^\s])(\s*rel=[\"\']\s*[\"\'])/i", "$1", $text);
       return $text;
    }
    add_filter('comment_text', 'tuyenpc_remove_nofollow');

    Best Regards,
    PenciDesign.