Links Attribute

By default all links internal and external are nofollow.


Screenshot from 2021-03-05 17-39-24.png


Is it possible to make selected links (but not all links) dofollow and if so, how?

Comments

  • BleistivtBleistivt Moderator

    Maybe you can get a few ideas from this plugin:

    The relevant code is quite simple:

       public function base_beforeCommentBody_handler($sender, $args) {
           Gdn_Format::$DisplayNoFollow = false;
       }
    

    Inspecting the $args array you should be able to find the user ID and modify $displayNoFollow accordingly.

    ...if you are not using the new rich editor.

    In case you are using the rich editor, you will have to extend the formatting using Reflection (check the plugin code). Related pull request:

    https://github.com/vanilla/vanilla/pull/9860

Sign In or Register to comment.