Code

Discussion on Ultimate Grid Responsive Gallery

Discussion on Ultimate Grid Responsive Gallery

Cart 1,227 sales

castleplugins supports this item

Supported

This author's response time can be up to 1 business day.

175 comments found.

” Also you don’t have to load all the images at once (for performance purposes) so you can specify the number of images to load when it first load and the number of images to load when you click the “load more images” button.”

Aren’t ALL thumb images loaded on page arrival and simply hidden with CSS and a “load more” added? This is much different than ajax only fetchng the specified number from the server with a “load more” button to fetch more later. That would improve performance and only load what was needed / specified. Please confirm this, I hope I’m wrong.

What is “for performance purposes”? It seems loading all of the images and then hiding them, only to show them later with an animation is actually lowering performance and creating more tasks. If they are all loaded on arrival, why is only a specified number displayed? Why not show all of them? This may give the appearance of Tumblr but doesn’t seem to actually work like that at all. Am I setting this up wrong?

Additionally: you can verify the above thing by removing the JS and CSS files of the plugin and you will get plain text and see that there’s no image loaded at all, for example I did that for the demo of this plugin and I get this: http://www.davidbo.dreamhosters.com/plugins/test/ as you can see just text and on my end loads super fast (even though I’m in a place with a very bad internet connection)

;) that’s about all I can say. Sounds good. :p

David- Is it possible to load more than the default 15 images? I want to load 28 images and I changed imagesToLoadStart to 28 in the gridGallery.js file…but its still loading 15. Thanks!

Hi. yes you can, you need to define that in your web page where you init the plugin, for example:
 //INITIALIZE THE PLUGIN
$('#grid').grid({
      imagesToLoadStart: 28,
});

Thanks David.

Hi…great gallery thanks. I have the same request as Patson28130. I need to lose the ‘ALL’ option. Be able to designate a default gallery. Is it an update thats coming soon?

Yes you can, just pass this parameters to the JS function:
noAll: true,
 defaultCategory: 'Category 2',

Thanks David!

When you make the purchase contact me so I can send you the JS files since I think the file in CodeCanyon doesn’t have the “noAll” setting available

Hi, how can i manage to load all images of a spefic category if i click the category button? At the moment i have for example 10 images with the category_1, but on the “ALL” Tab only three of them are shown. If i then click on the “category_1” still there are only 3 images, but i need it to show all ten. How can i do that?

Sent you an email

I want to buy this gallery, I can do it without categories?

I have a problem in ie8 incorrectly calculates space http://tamadagalina.com/gallery_page.html

hmm it seems like you theme in IE8 is using Javascript to put the right section in there (the section where it says “?????????? ? ???????”) and probably in newer browsers is using CSS media queries, but if it is using Javascript then the plugin can’t really know when to calculate the width of its container in order to distribute the thumbnails.

Currently the plugin calculates the space when the page load, (seems like after that is when with JS your theme put that section in the right) and also when you resize the browser, if you resize your browser after the page has loaded then you will see that now it knows the correct width.

So the solution is to find where your theme is using that JS to change the section to the right and then reload the grid after that, with this peace of JS:

var grid = $('#grid').grid();
grid.grid('reload');


A better solution would be that you theme use CSS instead of JS to put the correct layout

thank you!

Hi there, is there a way to set the “lightbox-text” as the alt attribute for the image(s)? I think this tool is amazing but a little worried about SEO and accessibility. Many thanks. My email is anthonytomlinson132@hotmail.com

Hello, with the plugin as it is you can’t but you can tweak the JS in order to do so, first use the gridGallery.js file (the not minified version) in your page and then open it and find this:
currentImage.src = src;
then replace it for this:
currentImage.src = src;
currentImage.alt = text;

You’ve made my day! Thank you :)

Hi, someone 6 months ago mentioned being able to add an image to multiple categories. I need the same thing done for my site. Do you still have the code that was used to create this solution? My email is braylark@gmail.com

sent you an email ;)

Hi there.. i bought this yesterday.. but is not works… I am use wordpress…

thx..

is that okay to me exchange to Wordpress plugin? sry for this.

I sent you an email

Hi!

Do you mind to help us remove the function where the user can highlight the text when they hover/select on the lightbox captions?

What I mean here is when you highlighted the texts usually there’s a background color to show you whichever you’ve selected.

Thank you!

Ohhhh, I thought you were talking about the caption on the thumbnails.
But yes I disabled the selection on the lightbox but you can activate it again, just open the gridGallery.min.js file and find this:

Q.attr("unselectable","on").css("user-select","none").on("selectstart",false);
then erase it!

awesome, that works! :)

Amazing Gallery! Congratulations.

Its possible to add a like button or somenthing over the image in lightbox?

This would be awesome.

Thanks.

thank you, currently there’s no option for this, you would have to tweak the JS section Cheers!

Ok thanks… Do you know why I get a broken images like this?

Hello can you share the link to your site where the gallery is? so I can inspect it ;)

It’s nice scripts!. Could we edit the top navigation “Drawing, Illustrations, Photography”? Thanks and Regards

Hello, what do you mean edit? you can change the categories of course, just change them on the boxes and the plugin will automatically read them ;)

Thanks!

Can an image belong to multiple categories?

Currently no, but I will add it as an update ;)

Very very good! 5 Stars!

Hi,

How do I make a hyperlink open in a new tab when clicked?

Hello, open the gridGallery.js file (the not minified version inside the JS folder) and find this:
location.href=url;
then replace it for this
window.open(url , '_blank');

don’t forget to use the gridGallery.js file in your html page (not the minified version)

It worked…thanks!

Hello, Is it possible to hide “all” and have a directly selected category? Thank you Pat

Hi, currently that is not possible, but I’ll add that as a future update, just don’t know when, Kind Regards!

Hi, What’s up doc ?

Hello, I haven’t get the time to do it, since I’m currently working hard in a huge update for the “Multi Purpose Media Boxes” but if you really really need it I can make a little freelance job for you (in case of urgency)

How do I increase spacing between images? Thanks, love it.

Hello, there’s 2 javascript options for that, you can see it here: http://www.davidbo.dreamhosters.com/plugins/gridGallery/documentation/index.html#Options
By default the options are set like this:

horizontalSpaceBetweenThumbnails: 5, 
verticalSpaceBetweenThumbnails: 5, 

That worked but I wanted to add padding to the containing div but the grid does not reduce in size instead it’s forced off the page. How do I reduce the size of the grid so I have some space around it?

Hi, I’m not sure I do understand this, but you can wrap the grid with a div and then apply some style to this div for example:
<div style="width: 800px">
     <div id="grid"> 
     </div>
</div>

Hello, Quick question before i buy it… can i use it without the “category filter”? is there any chance to make it work on IE7?

Yes you can disable the category filter bar, IE7 is a very old browser I don’t think is worth to try, even IE8 is dying, you can read about IE8 here: http://notes.envato.com/news/ie8-compliance-is-now-optional/

is there a way to show an image in more than one data-category?

Please read the comment before yours. Regards

Hi davido,

We have some problem to add (with ajax) and manage the new box added. what function we must to use or what process may i use to do it fluently.

Hello, see this: http://codecanyon.net/item/ultimate-grid-responsive-gallery/5093275/comments?page=1#comment_4497750

Also can you provide me your Purchase Code through private message here: http://codecanyon.net/user/davidbo90#message since your account says that you didn’t purchase this plugin (maybe you bought it from a different account)

Can the files needed to run this plugin be loaded and pulled from another site,i have a big cartel site where i have no access to local files,my url is redirected to my bigcartel site.

Hi, yes you can bring the files from another site, just type the all URL

Thanks ive done this before with another gallery and it worked but im having a problem with this one,im missing something i will give it another try!

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey