Tagged: futures, mediapress
I have fixed it:
class-mpp-admin-settings-page.php line 625:
Was
if (typeof(localStorage) !== 'undefined') {
Now
if (typeof(localStorage) !== 'null') {
Now I can get back to understanding why MediaPress is not loading the right size photo, or the photo.php template file.
Hi George,
those have very different meaning in javascript. It is not a type.
1. If you want to check for null, there should be no quote, you would dotypeof(localStorage) == null
My code is for older browser to detect if localStorage is defined(available) or not. It has no impact on your situation.
Regards
BrajeshNonetheless Brajesh, I have found your bug, maybe you can confirm the issue? As in, it is when you check for, and try to load local storage on my browser, it fails, and throws that error. Unless you are saying that I am wrong, and there is nothing wrong with the code, and look elsewhere?
My last issue is that I’m trying to overload the single image view – the one that appears when you click on the image in the lightbox, the one you see if you turn the lightbox off and the gallery thumbnail is clicked from the shortcode gallery, could you tell me which file I should be over-riding for that?
I can over-ride the lightbox/photo.php
However, it seems that the default photo.php is not being loaded. the image that appears does not have the mpp classes.
This is where we started, but I’m pleased to have the lightbox up and working. Is there any way I can zoom that image?
You must be logged in to reply to this topic.