Hello,
How to I add in a rel=”nofollow” to my link on my icon boxes on my home page?
Cheers
Hi,
There is no option for that yet, you’d need to edit the code that generates this shortcode, open /config-templatebuilder/avia-shortcodes/iconbox.php and look for line 311:
$title = "<a href='{$link}' title='".esc_attr($linktitle)."' $blank>$linktitle</a>";
Replace it by this:
$title = "<a href='{$link}' rel='nofollow' title='".esc_attr($linktitle)."' $blank>$linktitle</a>";
Regards,
Josue
Great! Thank you!!