paul-g
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 Datepicker] Datepicker is not workingMaybe it’s the animation effect. The only one which works for me is ‘show’
Thank you for the solution Stephanie and Oshouki! ??
Forum: Plugins
In reply to: [Post Type Switcher] Confilct with WPML pluginWatch out, there is a ‘}’ to much at the end.
Btw. thank you for the code! ??
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Error after latest updateYepp… same here.
place
<?php if (function_exists('rps_show')) echo rps_show(); ?>
above the loop in index.phpForum: Plugins
In reply to: [Plugin: Multiple Post Thumbnails] Image not displayingYeah, it works for me too! Thank you, casper83! Nice solution.
Too bad you still have no luck with that.
To make clear i got it right, you have some kind of album-page, where you want to show all your galleries (page “A”)? And on this page you want to have links to all (or only specific galleries), which should load on the same page (“A”)?
How does the URL of the default gallery looks like?
On the album page the correct path to the gallery ID is
$gallery->gid
In that case following should work:
<?php echo nggcf_get_gallery_field($gallery->gid, "Date"); ?>
Maybe this could help you.
The link to a specific gallery is just an addition of ??gallery=[id of the gallery]? to the current link of the gallery-page.
In your case it would be:
<div class="gallerymenu"><a href="?gallery=2">Next Gallery</a></div>
That will load the gallery with the id=2 on the same page of the gallery “a”.