whappo
Forum Replies Created
-
Forum: Plugins
In reply to: [Sociable] [Plugin: Sociable] dashbar image displaying wrongHi, thanks for your response. It appears that the issue was with the User Avatar plugin and not Sociable.
Forum: Plugins
In reply to: [WP-FacebookConnect] WP-FacebookConnect messing fb user namesSeriously? Is this not happening to anyone??
ScreenshotI was having very strange things happening with facebook login redirecting back to the login page but not logging in…
finally had to pull the plug(in).
Hoping this is fixed soon!BUMP!
Forum: Plugins
In reply to: [Plugin: NextGEN Public Uploader] is not a valid file errorHey I’ve had the same problem. I just edited class.npu_uploader.php searching for “valid” and removing the two php commands calling for that error. Seems to be working well now.
Thanks Otto! Your a TECH NINJA!
I noticed my cpu was running hot and that all my posts I were editing appeared to be constantly reloading. Finally tracked it down to this plugin. Glad I didn’t get suspended 😀
Ahaha, sorry about that. Do let me know when you add that code, you’ll be my hero! And btw, maybe you should revise your installation instructions to mention to add that code after the
<a>tag. Save everyone some time.
Ok, thanks again for your help!Yes it does! It was a conflict with a plugin… have to figure that out later.
How hard would it be to allow only one vote from all the photos? Eg: vote on a photo, then the rest can’t be voted on.
This would be the best scenario for me, but if that’s not possible, I’ll just switch to the star rating system (I don’t really like it as its not as accurate since each photo may receive a different number of votes)Oh, I disabled every plugin but ngg & ngg voting and it seems to be working! Interestingly I vote but only when I refresh do the thumbs disappear
<?php /** Template Page for the gallery overview Follow variables are useable : $gallery : Contain all about the gallery $images : Contain all images, path, title $pagination : Contain the pagination content You can check the content when you insert the tag <?php var_dump($variable) ?> If you would like to show the timestamp of the image ,you can use <?php echo $exif['created_timestamp'] ?> **/ ?> <?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($gallery)) : ?> <div class="ngg-galleryoverview" id="<?php echo $gallery->anchor ?>"> <?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 } ?> <!-- Thumbnails --> <?php foreach ( $images as $image ) : ?> <div id="ngg-image-<?php echo $image->pid ?>" class="ngg-gallery-thumbnail-box" <?php echo $image->style ?> > <div class="ngg-gallery-thumbnail" > <a href="<?php echo $image->imageURL ?>" title="<?php echo $image->description ?>" <?php echo $image->thumbcode ?> > <?php if ( !$image->hidden ) { ?> <img title="<?php echo $image->alttext ?>" alt="<?php echo $image->alttext ?>" src="<?php echo $image->thumbnailURL ?>" <?php echo $image->size ?> /> <?php } ?> </a> </div> <?php echo nggv_imageVoteForm($image->pid); ?> </div> <?php if ( $image->hidden ) continue; ?> <?php if ( $gallery->columns > 0 && ++$i % $gallery->columns == 0 ) { ?> <br style="clear: both" /> <?php } ?> <?php endforeach; ?> <!-- Pagination --> <?php echo $pagination ?> </div> <?php endif; ?>This might be what you want.
*Edit: no it is not.
Is that the gallery.php file?
Ok, keep me posted with your developments! Thanks for your help.