The forum is here for legacy reasons. No new posts will be created. User registration is disabled! If you have any questions, please email us or check https://www.adultscriptpro.com for more details!
You are not logged in.
Pages: 1
Hello,
Anybody know how to create nodofollow backlinks in Aspro and ASS.
Offline
Offline
If you want to have both links (follow and nofollow) choosing from the backend of aspro, this requires a change to the form: admin/modules/link.
If you want, very simply, that all the links are nofollow go: templates/your-themes/extend/widgets/link-footer.widget.php (if you use the links in the footer).
Edit this line
$output[] = '<li class="footer"><a href="'.$url.'" '.$title.$target.'>'.htmlspecialchars($link['title']).'</a></li>';
adding donofollow
I think it goes well
$output[] = '<li class="footer">'<a href="'.$url.'" rel="nofollow"'.$title.$target.'>'.htmlspecialchars($link['title']).'</a></li>';
Offline
Thanks for information I want only 1 Link as dofollow
Offline
Pages: 1