I inserted in publication a [nggallery id=9]
So, on my blog on page with this publication i see gallery and those links above the gallery:
[Show as slideshow]
[View with PicLens]
How can I place them under the gallery and in the same line??
so it would be like this:
gallery images
[Show as slideshow] [View with PicLens]
Thanx a lot!!!
http://wordpress.org/extend/plugins/nextgen-gallery/
/wp-content/plugins/nextgen-gallery/view/gallery.php
here :)
just moved down codes
<?php if ($gallery->show_slideshow) { ?>
<!-- Slideshow link -->
<div class="slideshowlink">
<a class="slideshowlink" href="<?php echo $gallery->slideshow_link ?>">
<?php echo $gallery->slideshow_link_text ?>
</a>
</div>
<?php } ?>
<?php if ($gallery->show_piclens) { ?>
<!-- Piclense link -->
<div class="piclenselink">
<a class="piclenselink" href="<?php echo $gallery->piclens_link ?>">
<?php _e('[View with PicLens]','nggallery'); ?>
</a>
</div>
<?php } ?>
end it's under thimbnails.
the only more question is how to place both links in one line??
help please
P.S. where to change the [Show as slideshow] to [Slideshow]??
I using v1.5.3 so might be an update since this thread but you can change the text to whatever you want like [Slideshow] in the NGG admin panels - Options -> Gallery -> Integrate Slideshow checkbox - there is an open text box here to enter the link appearance.