Hello
I am working with Drupal 6.x and
on the top in all the nodes I have it appears a Button "What links Here?"

It never happened before in other drupal 6.x or 5.x.

http://oldbankdistrictmap.com/themes/terrafirma_theme/Picture16.png

How could I make dissapear that button?

Thanks

Comments

vm’s picture

what contrib modules are in use ?
disable each one to find out which one it is coming from.

jabadco’s picture

I just figure out that backlinks is in the Views Module integrated.

Gessle’s picture

I also found out that I have those..
Is there way to hide them?

jugglerpm’s picture

Disable the backlinks view,

or

Adjust "access" here:

http://www.example.com/admin/build/views/edit/backlinks

WeerOnline’s picture

thanks

jabadco’s picture

Thanks :)

doomed’s picture

I prefer leaving the access permissions unchanged and just disable the Menu option.

Gessle’s picture

Thanks :)

Shambhu’s picture

Hi

I did'nt find any module by name backlinks in the module list in my drupal website but, still I am able to see the "what links here" menu. Can any body please suggest to how to remove/hide it.

Thanks.

Mchraiet’s picture

Backlinks is not a module, it's a View.
You have to go to Views and disable the Backlinks view.
Also, don't forget to clear the cache.

Shambhu’s picture

Hello
I am working with Drupal 6.x and
on the top in all the nodes I have it appears a Button "What links Here?"

vm’s picture

it is not a core feature. It is from a contrib module. Disable contrib modules to locate which module is outputting the link. Once the module is found, check it's settings. If the settings of a module don't allow the removal of the link, then themeing it out can be looked at. If using the views.module as the OP was, disable the backlinks view. If using another module, please mention which one it is.

fender-dupe’s picture

I cant remove it, i checked the node tpl and there is nothing there to delete

help

vm’s picture

check the modules you've enabled as previously mentioned. perhaps the views.module as previously mentioned or another. It wouldn't be in node.tpl.php

fender-dupe’s picture

yes I fixed it 2 days ago, it was indee default view from what links here

itserich’s picture

Upon updating to the D7 Sep 1 2011 Views Dev, these What Links Here links were automatically enabled in node panels.

Go to /admin/structure/views

and look for the default Backlinks View.

Disable it.

mayank-kamothi’s picture

Hi,Jabadco

If you do not want that link.it is simple to remove by css,
Add style to that link to "display:none" .
so,simple..

Mayank

Mayank Kamothi

cpliakas’s picture

Not sure removing via CSS is the way to go here. Why have the server process something and send markup for data that is effectively throw away? That doesn't seem like the best method from a performance standpoint, and it adds one more step you have to remember when the time comes to change themes.