Hi,
Not quite sure how to ask this so its clear...after clicking on an image in the album, you get taken to the page with just the image. Then you can click on the image for it to display full size in your browser (I think this is for downloading). Anyway...I'd like to disable the link so on the page that shows the image there is no link when you click on the image (i.e. nothing happens). How do I accomplish this?
Thanks!
Comments
<div id="image">
" title="<?php echo getImageTitle();?>"> <?php printDefaultSizedImage(getImageTitle()); ?>
</div>
Delete
" title="<?php echo getImageTitle();?>">
and the
so your line 38-40 should look like:
<div id="image">
<?php printDefaultSizedImage(getImageTitle()); ?>
</div>
Save and upload, replacing existing image.php which you should backup as image.php.old or some other name like that as a precaution.
Open the file image.php in your /themes/default folder. Around line 38-40 you will see:
<div id="image">
" title="<?php echo getImageTitle();?>"> <?php printDefaultSizedImage(getImageTitle()); ?>
</div>
From line 39 delete
" title="<?php echo getImageTitle();?>">
and the
so your line 38-40 should look like:
<div id="image">
<?php printDefaultSizedImage(getImageTitle()); ?>
</div>
Save and upload, replacing existing image.php which you should backup as image.php.old or some other name like that as a precaution.
Open the file image.php in your /themes/default folder. Around line 38-40 you will see:
'<div id="image"> " title="<?php echo getImageTitle();?>"> <?php printDefaultSizedImage(getImageTitle()); ?> </div>'
From line 39 delete
'<div id="image"> " title="<?php echo getImageTitle();?>">'
and the
so your line 38-40 should look like:
'<div id="image">
<?php printDefaultSizedImage(getImageTitle()); ?>
</div>'
Save and upload, replacing existing image.php which you should backup as image.php.old or some other nam
<div id="image">
<?php printDefaultSizedImage(getImageTitle()); ?>
</div>
<div id="image">
" title="<?php echo getImageTitle();?>"> <?php printDefaultSizedImage(getImageTitle()); ?>
</div>
which one would I delete? thanks.
Like jayray said in his last post, just make lines 38-40 look like this:
`
<?php printDefaultSizedImage(getImageTitle()); ?>
I kind of want to do the same thing... I also want to get rid of the link, BUT I don't want to show the "DefaultSizedImage" in the album. I want the original image there.
How?
Use the following code:
`
<?php getSizeFullImage(); ?>
It should be:
`
" alt="<?php printImageTitle(); ?>" />