Hi @scottphelps we added some extra code to Draw Attention v1.9.15 which lets you customize the no follow attribute with some extra code. Please update to v.1.9.15 and add this code to your functions.php file:
add_filter( 'da_render_hotspots', 'da_set_urls_to_nofollow', 10, 2 );
function da_set_urls_to_nofollow( $hotspots, $image_id ) {
foreach ($hotspots as &$hotspot) {
if ( empty( $hotspot['rel'] ) ) {
$hotspot['rel'] = '';
}
$hotspot['rel'] .= ' nofollow';
$hotspot['rel'] = trim( $hotspot['rel'] );
}
return $hotspots;
}
If you email our pro support at [email protected], we can share this code as an add-on plugin you can install too if you prefer not to modify your functions.php file.
Thanks,
Nathan