Plugin Author
shauno
(@shauno)
Hey man
Sorry about that last thread, it turned into a free for everyone’s questions, and yours got lost. I’m not in front of my dev machine right now, but I will have a look at this as soon as I get a chance.
I know I had a temp login to your site at one point, is that still active? Just in case everything is correct on my test installs, and I need to check conflicts on your site directly?
Yup still active…
Yup thats my fault… I should of known better to continue asking questions on a thread that wasn’t mine.
Plugin Author
shauno
(@shauno)
I’ve found the problem with voting in the popup. It is because NGG have changed the markup structure of that template, and the voting plugin was using the old structure to figure out the image id. There is a quick fix for now:
Change line 46 of the gallery template from:
<div id="<?php echo_h('ngg-image-' . $i) ?>" class="ngg-gallery-thumbnail-box" <?php if ($style) echo $style; ?>>
to this:
<div id="<?php echo_h('ngg-image-' . $image->pid) ?>" class="ngg-gallery-thumbnail-box" <?php if ($style) echo $style; ?>>
I see the new NGG markup does have the image id elsewhere, so I will try patch NGG Voting Premium to find the new markup, and release an update at some point.
Hope that helps!
And I assume I should remove the tag <?php echo nggv_imageVoteForm($image->pid); ?> from the gallery.php template?
Is this change in 1.9 ? or 2.0 ?
I disabled all my galleries after this change
I tried putting back to original and still galleries are not there
I made the change on both 1.9 and 2.0 and still no bueno… I even inserted tag <?php echo nggv_imageVoteForm($image->pid); ?> and I have the same issue with thumbnails and just a few popups with voting capabilities and then it disappears
I’m leaving nextgen 2.0 active not going back to 1.9 for now.
Plugin Author
shauno
(@shauno)
NGG V2 is fine, you just need to make sure you are editing the correct template (they have gone crazy with the folder structure in v2).
My user on your site doesn’t seem to to have permission anymore, can you just grant the access again. Please also just let me know which page you are using to test, so I can check it out.
Shauno I just gave you admin rights
I updated the index.php in nextgen V2 on line 46 like you stated above
Oh wow admin rights wouldnt matter because the files have to be updated in cpanel…. shucks
Well anyway you should have access to login and see whatever you need to see and tell me what I should change or whats wrong
sent you an email with index.php so you can see what it looks like after the update you mentioned above
Plugin Author
shauno
(@shauno)
Ok, I’m an idiot 🙂 I see you’ve been saying it works fine, until you remove the voting tag from the template. You have to have the voting tag in the template for the popup voting to work. I think I might have said you didn’t in another thread, but re-looking at the code now, you definitely need to have the voting tag in the template.
The good news is, you can add the following rule to your CSS, and it will hide the voting in your template, but still show it in the popup:
.ngg-galleryoverview .nggv_container {
display: none;
}
Sorry again for the confusion man, my mistake.
Ok I put it in the css and thumbnails don’t have voting capabilities but I still have the problem where voting disappears after the 2 photo on popup view. I have to close popup view and reopen every 3rd photo for voting to popup again. Why is this?
Plugin Author
shauno
(@shauno)
I see that only happens when I use Chrome on your site. It works fine in FireFox. It seems to be fine on my test installs, but let me test a bit more and see if I can see what’s happening.
I will let you know once I know more