Hi,
New to Zen and the author of the Theme said (on his site) to post problems here.
I like the i-feel-dirty template but am having a problem that when displaying the photo, even thou 'Full Image Protection' is set to 'Download' nothing happens when you click on the picture. I Tried Garland Theme and it does download, so is there something I can add to enable this. This is the only issue stopping the site going live.
I had a look in album.php and image.php for both Themes to compare them and try and work out what's missing but am affraid it was beyond me as the coding between the 2 seemed very different - still trying to figure it out but any suggestions or even what code to change and what to change it to would be great.
Thanks
John.
Comments
I can only guess, but since you say nothing happens when you click on the picture the best guess is that the theme has not created a link for the picture.
Just had to add:
`" title="<?php echo getImageTitle();?>">`
in the image.php at the point of
`
to end up with:
`
<?php
if (getOption('use_colorbox_image')) { ?>
" title="<?php echo getBareImageTitle();?>">
<?php printDefaultSizedImage(getImageTitle()); ?>
<?php }else{ ?>
" title="<?php echo getImageTitle();?>">
<?php printDefaultSizedImage(getImageTitle()); ?>
<?php } ?>
`
`
" title="Download full size image"> Original Size: <?php echo getFullWidth() . "x" . getFullHeight(); ?>
`
when I wanted to create a link for the actual image I had stored on my server for download.
EDIT: I should have refreshed to see you had a solution before posting...
this is not realy an issue and i-feel-dirty works like zenpage theme :
if colorbox is checked, unprotected Image is displayed in the colorbox.
in other case, there is not link.
Going to push my luck and see if I can't work out how to add the 'downloadList' plugin.
John
`" title="Download full size image"><?php echo gettext("Original Size:"); ?> <?php echo getFullWidth() . "x" . getFullHeight(); ?>`
I remember having trouble with colorbox (it would hang on large images) and some of my family not being very savvy about doing a save as... which is why I had added a link.