I have the plugin installed on several sites. At one of these sites, the options page does not appear in the menus. When I try to enter the options page URL directly (https://mysiteurl.com/wp-admin/edit.php?post_type=wpb_gallery&page=wpbgallery) then I receive a WP warning saying that I don’t have permissions to see that page. I am logged in as an admin user.
Any ideas?
]]>nothing happens on clicking upload button while creating new gallery ie it doesnot shows the upload screen
kindly help
thanks
The gallery short code is producing only the lables of the pictures, but not the pictures.
See this test page https://ninapetronzio.com/test/
Wordpress is the latest, 4.8.2
The plugin is the latest 1.1
Any help would be appreciated.
]]>Hi,
I see that the plugin uses Timthub library on the front-end in order to resize images. This library causes an incompatibility issue with the WP Offload S3 plugin.
WP Offload S3 is a plugin that transfers images to an Amazon’s S3 bucket and rewrites URL so that URLs point to an external URL. Because of this, Timthumb can’t handle images resizing (i can see error 400 in the JS console).
There are 2 reasons why it’s happening:
– Timthumb can’t resize images from a remote URL
– Even if it could then URLs are not properly formatted – Amazon S3 would reject requests with a query string anyway.
So I’m afraid that this issue is not only WP Offload S3 plugin specific. This problem will occur with any WP plugin that serves images from a remote server (for instance caching plugins that serve images from CDN).
BTW, why do you use Timthumb when WordPress can handle images resizing on its own? I believe that you have some reason, but it would be good if there were a filter and/or an option in the plugin’s settings that would allow for Timthumb disabling.
// EDIT:
I’m sorry. I’ve just found that I can disable Timthumb in the plugins’ options!
I came up with the issue where the post is published but the gallery. In that case, it is generating the following error.
Notice: Undefined offset: 0 in C:\xampp\htdocs\mysite.org\wp-content\plugins\wp-bootstrap-gallery\wpb-gallery.php on line 268
]]>I’m using this plugin to display a wide variety of images in a gallery format. All though the plugin itself is great, I have had a great deal of problems trying to use it.
If I add anymore than 19 images the gallery disappears entirely along with the content on the page. I managed to get roughly 50 images on another website. Any idea what may be causing this?
]]>I noticed this plugin is inserting an empty modal code when my loop runs. Doing this on both pages and on blog posts. Any solutions for removing this?
<div id="blueimp-gallery" class="blueimp-gallery" data-useBootstrapModal="0" data-fullScreen="0">
<div class="slides"></div>
<h3 class="title"></h3>
<a class="prev">←</a>
<a class="next">→</a>
<a class="close">x</a>
<a class="play-pause"></a>
<ol class="indicator"></ol>
<div class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" aria-hidden="true">×</button>
<h4 class="modal-title"></h4>
</div>
<div class="modal-body next"></div>
<div class="modal-footer">
<button type="button" class="btn btn-default pull-left prev">
Previous
</button>
<button type="button" class="btn btn-primary next">
Next
</button>
</div>
</div>
</div>
</div>
</div>
]]>
Bug if several galleries in the same page… do you have a tips for that ?
]]>Same question as from tomshaws and Huroman:
Is there a way to get around the error
“wpbgallery-admin.js?ver=1.0:47 Uncaught TypeError: Cannot read property ‘frames’ of undefined”
?
I tried deactivating and activating the plugin, as another user suggested, but that didn’t change anything.
When on the “Edit WPB Gallery” screen I click on “upload images” nothing happens. I expected to be prompted to choose files via a corresponding dialog window.
I appreciate your sharing of this plugin which seems, in theory, to be what I need.
]]><button type="button" class="btn btn-default pull-left prev">' . __('« Previous') . '</button>
<button type="button" class="btn btn-primary next">' . __('Next »') . '</button>
]]>
I have the WPB gallery installed on two websites. The Gallery Settings sub heading showing up on one of the websites, but not the other. Tried deleting and reinstalling it without success. Both websites have the same theme. Any suggestions?
Here are a couple of screenshots:
1. With Gallery Settings.
2. Without.
]]>The Chrome inspector provides some insight:
Cannot read property ‘frames’ of undefined where “undefined” is wp.media, so I figure the problem might be the update to the Media Library that comes with WP version 4.
Your plugin looks like the best one of the bunch and I am very disappointed to be unable to use it. It would be awesome if you updated it.
Cheers
]]>Why are you using ul li in thumbnails instead bootstrap columns?
]]>This is a development site using theme Bootstrap Ultimate.
I have inserted a gallery here: https://www.disana.co.uk/?p=114 and I get another gallery popup underneath yours, so when I close yours there is another still there !
Any ideas?
ps I dont have any other gallery plugin or standard WP gallery item on this page
]]>Hi again,
How can we display image alt text or title?
Hi, I am facing a problem with your plugin. I have installed it on my machine and activated it. But, when i try to upload images by clicking upload image button then nothing happens. What’s happening? I hope you will response quickly. Thank you
]]>I am using the borderless option for my gallery, and all works well on desktop and mobile devices.
However, on an iPad, the left and right arrows have been replaced with boxes with a cross through them.
I am tempted to just hide them using css, but that would leave the gallery without obvious navigation (admittedly swiping would still work).
Any ideas?
Thanks in advance!
]]>I’m trying out the plugin and when I click the thumbnail it comes up with the pop up version but it is scaled down. When I actually download the image it is the full size image but for some reason the plugin is scaling the size of the image display to be quite a bit smaller. Please help me resolve.
https://www.aberdeens.com/site/?page_id=102
Also curious about the full screen version shown in the demo. Can’t get that to display like it does in the demo.
Thanks!
]]>Having the borderless option checked in the settings doesn’t remove the default modal styling.
]]>Hi, thank you very much for your cool plugin!
I’ve found a little bug: if you put multiple galleries on one WP page, you will cycle on all the pictures on all gallery. The expected behaviour is (I think) that you must cycle throught the pictures of ONE gallery (the gallery that contains the picture you started initially).
To fix this, it’s enough to change one line in wpb-gallery.php :
Swap this:
return '<li><a href="' . $url . '" title="' . $title . '" data-gallery=""><img src="' . $image[0] . '" width="' . $image[1] . '" height="' . $image[2] . '" alt="' . $info[0]->post_title . '" /></a></li>';
With this:
return '<li><a href="' . $url . '" title="' . $title . '" data-gallery="gallery_' .$post_id. '"><img src="' . $image[0] . '" width="' . $image[1] . '" height="' . $image[2] . '" alt="' . $info[0]->post_title . '" /></a></li>';
Running latest version of everything. When I click the upload image button I get this error.
Uncaught TypeError: Cannot read property 'frames' of undefined
I’ve installed WPB Gallery and created some galleries which works great. However, when I resize the browser window the images do not scale down, but stay at full size until the wrap onto the next line.
Is it possible to have the images reduce in size before wrapping as the do here…
https://corkdaytours.ie
instead of wrapping and leaving “white space” as they do when I use your gallery here…
https://corkdaytours.ie/en/index.php/bike-hike-or-trek/
Thanks in advance for your help,
Donal
Hi,
Error I receive when I try and activate…
You do not have sufficient permissions to access this page.
thank you, nicholas
]]>Hi there, maybe a couple of new features is a good thing?
– Exif information
– Url to the photo (link to popup on that page eg: https://test.com/?openfoto4=1)
– Option to download the picture
– Maybe adding a “watermark” to every picture?
Hi there, is there a option to insert this in a theme file? Like with php or so? I would like to place a gallery in the footer.php ??
Btw, your plugin rocks :)!
]]>Do you think you would consider a new feature to allowing title editing on the edit screen where the images are?
Perhaps you could have the option for a grid view (like you currently have) and then a list view, which has all the images in a column down the page with the title fields next to it like this:
Grid:
[ ] [ ] [ ] [ ]
[ ] [ ] [ ] [ ]
[ ] [ ] [ ] [ ]
Or row:
[ ] —–
[ ] —–
[ ] —–
[ ] —–
On the row view, you can still re-order them?
]]>Hi, thank you for a great plugin. I just have one question please. How do I edit the gallery after I’ve created it. For example change captions or turn photos. I could probably do it from the WordPress Media Gallery but that would mean going through hundreds of photos to find the one I want to edit.
Thanks
Tash