Tagged: ,

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #746051

    Hello. When adding Buttons using the Enfold page builder, is there a way to do this?

    Thank you,
    Ryan

    #747640

    Hey

    Please enable the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and edit your element and give it a custom CSS class (“your-custom-class” in example below) and add following code to Functions.php file in Appearance > Editor

    function remove_title_attr(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery('.your-custom-class a').attr('rel','nofollow');
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'remove_title_attr');

    Also, please feel free to request – or vote if already requested – such feature on Enfold feature request form.

    Best regards,
    Yigit

    #748136

    Thank you. Steps completed. Now, if I can just figure out how to test /verify this is working. I can’t find anything easy that lists all followed external links.

    #748139

    Hi!

    It works, testing is not something we can help although.
    You can add an external link and check it.

    Let us know if we can help with something else related to our themes.

    Thanks you

    Regards,
    Basilis

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How To Set NoFollow For Button Links’ is closed to new replies.