1 to 4 of 4
Is it possible remove the OIOpublisher link from the OIOpub Links widget?
If so, how do you do it?
Are you referring to the "advertise here" link?
If so, open up include/output.php, and find:
if($link == 1) {
$code .= "<a rel='nofollow' href='".$buy_url."'>Advertise Here</a>\n";
$code .= "<br />\n";
}
And either comment it out, or remove it completely.
great tip, thanks!
Just as a quick note. If not using the widget (ie. putting the output function straight in your template), you can disable that link within the function itself:
<?php
if(function_exists('oiopub_sidebar_links')) {
oiopub_sidebar_links('', $title, 0);
}
?>
The 3rd argument, if set to 0, disables the advertise here link.
1 to 4 of 4