Hi, I love the plugin and it's working great, except on the single page I'd also like another link underneath where people can download the original full sized image, for those who want to get it printed. So basically all I need is a function to call the original image's URL.
Thanks a lot
Hi Guest -
You would have to adapt your theme manually to achieve that (That's no magic although). Just insert the following into your template:
PHP Code:
<?php if ($post->image): ?>
<a href="<?php echo $post->image->uri ?>" target="_blank">View the image in original size</a>
<?php endif ?>
May i recommend
this page explaining how to adapt your theme manually?
Greets from Salzburg,
Johannes