It is possible to remove the "thumbnail" link below the image? I really cant see any use for it (and it creates duplicate content that web spiders don't like).

I can remove the "original" link from the administration panel but how about the thumbnail link?

Comments

Hetta’s picture

Status: Active » Fixed

Administer -> Site Configuration -> Image ->
Thumbnail: Link: [Hidden].

Piece of cake.

jorisx’s picture

Version: 5.x-1.7 » 6.x-1.x-dev

this doesn't work for me in the gallery view
i'm trying to create a custom gallery view with node-image.tpl.php

	  $content .= l(image_display($image, IMAGE_PREVIEW), 'node/'. $image->nid, array('html' => TRUE));

can I change somthing in the above line of php to get rid of the image link
i think I have to change this part: , 'node/'. $image->nid but not sure to what ?

jorisx’s picture

hmm it's simple :-)
I changed this

$content .= l(image_display($image, IMAGE_PREVIEW), 'node/'. $image->nid, array('html' => TRUE));

to:

	  $content .= image_display($image, IMAGE_PREVIEW);

these tpl.php files Rock ! :-)

jiakomo’s picture

I hadn't seen the "hidden" option. Thank you!

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.