Upgraded to WordPress 6.0 and have issues? Please check the hotfix which you need to apply.

Okay
  Public Ticket #1928515
nofollow for social icon
Closed

Comments

  • Quentin started the conversation

    Hello,

    I would like to know how to add the nofollow attribute for my social icons links wich are in the footer and also in every products description. 

    thnaks for your help !

  •  228
    Milingona replied

    Hello,

    You can add that by replacing line 177 of others.php file located in wp-content/plugins/bakery-shortcodes/shortcodes:

    return '<div class="vu_social-icon"><a href="'. esc_url( $atts['url'] ) .'" target="'. esc_attr( $atts['target'] ) .'"><i class="'. esc_attr( $atts['icon'] ) .'"></i></a></div>';

    with the following:

    return '<div class="vu_social-icon"><a href="'. esc_url( $atts['url'] ) .'" target="'. esc_attr( $atts['target'] ) .'" rel="nofollow"><i class="'. esc_attr( $atts['icon'] ) .'"></i></a></div>';

    Kind regards,


    Milingona Support

    Follow on     Envato     Facebook     Twitter

  • Quentin replied

    Thanks a lot, it works ! 

    Is it also possible to add a nofollow  tag on a video shortcode ? I tried with the way that you told me for social icon but it didn't worked. 

  •  228
    Milingona replied

    If you want to add nofollow attribute to the videos inside Video Post then you need to replace lines 109-141 of te wp-content/themes/bakery/includes/functions.php with the following: https://www.codepile.net/pile/P2M5Ox2e.

    Best,


    Milingona Support

    Follow on     Envato     Facebook     Twitter