Hi,
thanks i am glad you are liking the WPAdverts so far :).
Regarding your question, you can add the code below in your theme functions.php file (or even better create a new WP plugin and add it there) it will add nofollow attribute to all links in the description.
function my_nofollow($content) {
return preg_replace_callback('/<a[^>]+/', 'my_nofollow_callback', $content);
}
function my_nofollow_callback($matches) {
$link = $matches[0];
$site_link = get_bloginfo('url');
if (strpos($link, 'rel') === false) {
$link = preg_replace("%(href=\S(?!$site_link))%i", 'rel="nofollow" $1', $link);
} elseif (preg_match("%href=\S(?!$site_link)%i", $link)) {
$link = preg_replace('/rel=\S(?!nofollow)\S*/i', 'rel="nofollow"', $link);
}
return $link;
}
add_filter('adverts_the_content', 'my_nofollow');