382 comments found.
Hi,
I’ve been using Auto Grid Responsive Gallery on my website for many years… Just wonder how to update this plugin in Wordpress, since I don’t want to change anything on CSS or anything files that affects my styles. I know you can do it manually on the FTP server but I have no idea which files needs to update, last time I did the whole thing got mess up. I hope there is an easy way to update this.
Thanks
Aldo
Hi Aldo,
Happy to hear that you are still using it
It depends, which version of the plugin you are using, are you using the new version? (the one based on the Media Boxes) or are you using the old one (first version)?
Best, David
Thanks David…. I know I’ve not updated a least 3 years ago… so it must be the old version. So my guess I need to re-created with the new version?
Hi Aldo, the major update was on 2017, maybe you already on the new version, can you send me the link to your site so I can check it out?
you can contact me privately via email here: https://codecanyon.net/user/castleplugins#contact
Best, David
hi. I have the auto grid gallery on a Wordpress page, but its not displaying. I believe I have images in the right folder and it should be working but I’m just getting a load more button.
https://railtrucks.com/gallery/Hello,
Ohh, it is strange, I see the boxes, but they are empty.
by any chance, is your “Template” setting empty? this one: https://imgur.com/a/EFbDcfF
Best, David
it is blank when I look at the template area. is there a chunk of code I could copy and paste into there?
yes, you can copy the code from here: https://www.castlecodeweb.com/wp-autogrid/documentation/#template
or you can also create a new gallery and copy the code from there (when you create a new gallery the “template area” has some content by default)
I hope this makes sense
Best, David
that worked. thanks,
Hello: I have purchased two licenses of your plugin, the truth is that it works very well, but I have a problem for some time now, and the error persists in all the templates I have tried … the problem is the following:
configure the gallery so that 7 columns are shown in full width and one less column always comes out and leaves a blank space on the right (where the seventh column should be) when more images are loaded it is rebuilt and there already if the 7 appear columns.
This can be solved because the 7 columns should always be seen.
I hope your help, thank you. Greetings
Hello,
thank you
it may be an issue with the scrollbar, try adding this peace of CSS:
body{
overflow-y: scroll;
}
if the issue persists can you show me a living example online? so I can take a look and see what’s going on.
You can contact me privately via email here: https://codecanyon.net/user/castlecode#contact
Best Regards,
David
Hello. Is the plugin compatible with Elementor
Hello,
the plugin is placed via shortcode, so yes, you can place the shortcode in elementor
Best, David
Thank you very much. I liked the plugin because of its function, fast photo viewer, zoom, very mobile. What you need now. A successful solution to the problem.
thank you 
Hi! Thanks for the awesome plugin. It’s working great! Question: I have a gallery with multiple categories and a few items could feasibly fit into both categories…example: a project I made could qualify as both graphic design and web design. Is there a way to detect the duplication?
Thanks!
Hello,
thank you
Yes, there’s a feature for that purpose, lets imagine you have an image named Autumn.jpg under Category 1, if you want that image to be under Category 2 and Category 3 as well (without adding it again inside those folders) you would need to use the config.txt file, and inside that config.txt you can write something like this:
image => Category 1/Autumnn.jpg extra_filter => Category 2, Category 3so the Autumn.jpg image will be also found under category 2 and 3
If you haven’t use the config.txt file before, you can check how it works here: http://www.castlecodeweb.com/wp-autogrid/documentation/#conffile
I hope this makes sense
Best, David
Hello dear
I order WordPress version but its run very slow maybe its my host problem, kindly would you share standalone version to try it , html , php …
sent you an email 
Dear Sir, I bought WP Auto Grid which is a great plugin!
I have a request for a new feature. Is it possible to use the txt file to give WP Auto Grid the file paths to use in the gallery?
In my site there are Cosplayer galleries and the management with WP Auto Grid folders is excellent. For example: Cosplayer John has photos of three costumes: - Iron Man - Batman - Stormtrooper There is a “John” folder with three subfolders, with photos of the costumes.
Cosplayer Dave has two costumes: - Jocker - Iron Man There is a “Dave” folder with two subfolders, with photos of the costumes.
Now, I would like an “Iron Man” gallery with all the cosplayers who have an Iron Man costume. I have to take a photo from the “John / Iron Man” path and one from “Dave / Iron Man”.
I can manage a database with folder names and file names of photos. From this database with an “Iron Man” query I extract the file paths and create a .txt file:
image => John/Iron_Man/J-Photo001.jpg
image => Dave/Iron_Man/D-Photo001.jpg
WP Auto Grid should use the paths present in the file to create the gallery. Is it possible to add this to the plugin? How much would it cost?
Best regards Gianluca Rossi rossi2116@gmail.comHi Gianluca,
I think I understand your request, at the moment the only thing that comes to mind that could help you is to use the “extra_filter” variable (in the .txt file)
For example you have the Iron man photos in the John and Dave folders, but you would also like them in an “Iron Man” category correct? so create an empty “Iron Man” folder and specify that those images will go there as well, by doing the following:
image => John/Iron_Man/J-Photo001.jpg extra_filter => Iron Man image => Dave/Iron_Man/D-Photo001.jpg extra_filter => Iron Manthat would classify those 2 images in the Iron Man category/folder as well (even though they are not inside it in your server)
I hope this makes sense
Best, David
Hi David,
thanks for the reply.
I tried the code and it only works in child folders. In other words it works with the Auto Grid gallery as root of:
/gallery-cosplay/
/John
/Dave
/Iron_Man
[config.txt]
There will be hundreds of cosplayers on my site and I need Auto Grid for each cosplayer with specific config files for each one individual. As indicated below:
/gallery-cosplay/
/John – [config-John.txt]
/Dave – [config-Dave.txt]
/Iron_Man – [config-Iron_Man.txt]
In this case, I’ve tried and it doesn’t work. The “config-Iron_Man.txt” finds files only in subfolders and does not find files on folders in the same level on the folder tree.
Best regards
Gianluca
Hi Ginaluca,
Ohh yes indeed, the plugin uses 1 config file for everything, hmm you could tweak a little the code in order to have 1 config file per folder, try the following:
Open the auto_grid.php file and find this:
read_directory("$directory/$file", $original_directory, "$directory_url/$file", $output, $config_from_file);
and right before that line add this:
if (file_exists("$directory/$file/config.txt")) {
$config_from_file = get_config_from_file("$directory/$file", 'config.txt');
}
and that’s it, I hope it makes sense
Best, David
Hi David, thanks for the reply.
Not exactly. Sorry.
I would like a gallery with just Iron_Man photos and exclude all other folders and photos.
In other words, I would like to extract only and exclusively Iron_Man photos.
Is this possible?
Best regards Gianluca
Hi Gianluca,
Ohh I think I understand, unfortunately the Auto Grid only reads what’s inside the folder, so the images must be in the same folder together.
You mentioned you were able to generate a .txt file from a database, are you using PHP? if so then you could create the HTML for the gallery manually using PHP (it would requite some PHP/HTML knowledge)
Best, David
Hi David,
I am a system manager, I know php.
A simple solution could be to give a particular name to the config.txt file, for example config-extract-iron-man.txt. When the name contains “extract”, the file extraction loop will have to take only the indicated files in the “config-extract-iron-man.txt” file.
Another question. Is it possible to have the “clone gallery” function, to duplicate an already configured gallery and customize only the path and name of the config.txt file?
Best regards
Gianluca
Hi Gianluca,
Yes, that would be possible, although it would required customizing the code and adding the option in the admin section
yes, I added a “clone” button in the admin (to clone the settings) you can send me a private message so I can send it to you to try it out, you can contact me here: https://codecanyon.net/user/castlecode#contact
Best, David
Hi David, popoup Fancybox buttons on top right, are not visible when user is login and wp admin bar in on. May you help me?
Best regards Gianluca
Hi Gianluca,
try adding this peace of CSS:
.fancyboxMB-container {
z-index: 999999999999 !important;
}
Best, David
I asked if there was a limit per category and found out the answer was no. A related question: Is there a limit to the total number of photos that can be in the gallery? I have a gallery with 2842 photos that I am trying to make alphabetical categories. When I get to the letter M the gallery stops displaying. I can tolerate a long load given the number of photos but if there is a limit to the number of photos the gallery can support I will have to find a different solution. That would be unfortunate because this WordPress plugin would otherwise do everything I want.
I guess another related question is if there is a limit to the number of categories?
Hello,
Ohh I see, the plugin doesn’t have a limit in the total number either, but sometimes if the thumbnails are a little bit heavy browsers tend to lag when there are many images, can you show me a living example online? so I can take a look and see what’s going on? you can contact me privately via email here: https://codecanyon.net/user/castlecode#contact
Best, David
Is there a finite number of images that can be in any one category?
Hi,
the plugin doesn’t have a limit per category at the moment 
Good evening, I wanted to know if with this plug-in it is possible to activate a lightbox gallery with a single image
Yes,
there’s an option in the admin settings named “Enable gallery for popup” which disables the next/prev buttons, so only a single image will show up in the lightbox
Best, David
Ok thanks, so I can insert a main photo for the album and when I click the lightbox opens with the other photos in the album inside?
Hi, ohh you meant a unique gallery in the light box per image in the grid, unfortunately the plugin doesn’t have this feature, it might be possible with the media boxes plugin but you would have to specify the HTML manually for all your images
Best, David
I am not able to change the shortcode or add more than 1 gallery. The shortcode is locked at [auto_grid id=”“]
Hello,
Very strange, can you send me a couple of screen shots of this? you can contact me privately via email here: https://codecanyon.net/user/castlecode#contact
Best, David
I sent you a private email through the link.
lets continue via email 
Hello, there is a way to list picture, video frame, picture with external link, all together? Thanks
Hi,
Do you mean like this example? http://www.castlecodeweb.com/wp-autogrid/portfolio/# some images have video-iframe and others have just images
if so then yes, you can have in the same gallery a combination of that
Best, David
Hello, yes! It is also possible to add a shared social button to any single picture? Can I set a link for a single picture? Thank you again
Hello,
At the moment the plugin doesn’t have sharing social functionalities
And yes you can set a link for a single picture
Best, David
Hello,
Two questions: 1) When I view a gallery item in the popup, scrolling navigates through all the gallery images instead of scrolling up and down the same image. I saw another poster asking about that and your reply was that an update fixed that, the poster confirmed. However, I’m using the latest version (recently downloaded), 3.2, and I still have the problem.
2) When the popup opens, the image opens at reduced size, I would like to have it open to 100% (or at least fill the width of the container). My images are quite large in height, and the plugin wants to display them so the entire image is shown, but I’d rather have it open at 100%.
Thanks for the help!
Hello,
1) can you explain a little bit more what do you mean with “navigate through the same image”? you only want to open 1 image and no navigate to another one?
2) I just read on fancybox that they are working in something like (a zoom in effect by default so the image stays full width and with the cursor you can move around to see it all), but its not ready yet, I’ll be happy to update fancybox once they make an update
Best, David
Thanks for the reply 1) That is correct, I want the image to open in the popup, and when the user scrolls the image moves up and down. Right now when the user scrolls, the popup cycles through the images in the gallery. 2) The example I’m using for your product is this site: https://www.citytechhq.com/portfolio which as you can see, when you open the image in the popup, it opens to 100%. Is it possible they have modified your plugin to do that?
Hello,
1) Unfortunately the plugin doesn’t have an option for this in the admin section but you can disable the wheel navigation from fancybox by doing the following:
open the plugin/components/Media Boxes/js/jquery.mediaBoxes.js file and find this:
transitionDuration : settings.fancybox.transitionDuration,right after that line add this:
wheel: false,that’s it, clear your browser cache!
2) Yes, they added some modifications to fancybox, they added this line:
jQuery(document).on('afterShow.fb',function(e,instance,slide){
instance.scaleToActual(50,50,0)
});
which can be added outside of the plugin’s files (which is good to know)
Best, David
Does this plugin support webp images, and if so do I have to do something specific to get them to work?
Hello,
the plugin supports webp images since it is using the standard “img” HTML tag, but WordPress doesn’t support that format on its Gallery, if you have your webp images stored somewhere else you can point to them manually (instead of using the ones from the WP Media Gallery).
Can you specify how you currently have them?
Best, David
Hi, I’m really enjoying your plug-in! I’m just trying to display the image title and a little bit of text using the ‘overlay effects’. Here is my testconfig file I’ve made:
image => A_pushup.jpg name => test 1 text => This is 1 test
image => B_push-up-100.jpg name => test2 text => This is 2 test
image => C_push-down.jpg name => test3 text => This is 3 test
image => D_push-down.jpg name => test4 text => This is 4 test
image => E_push-up-100.jpg name => test5 text => This is 5 test
I have placed this file ‘testconfig.txt’ in the A_Push Effects image folder and I’ve put ‘testconfig.txt’ in the Shortcode menu item, it matches the same gallery for images, eg A_Push Effects. I cannot seem to get the names I need displayed, for example it will show ‘push-up’, but not ‘test1’ and I can’t seem to be able to display the text at all. Hope I made sense, thanks in advance!
Hello,
Can you show me a living example of this? so I can see what’s going on.
You can contact me privately via email here: https://codecanyon.net/user/castlecode#contact
Best, David
Great support! Thanks so much for helping out. Great plug-in!
Hello, great plugin, thank you! How can I name categories in another language?
Hello,
thank you
Just rename your folder names and that’s it, the plugin will change it automatically when you refresh the page
Best, David
I made it at first) But it doesn’t work. If I write name of the folder in Russian (“АБВ”) – on the site i see “gallery” instead “АБВ”. What should I do? Thank you
Hello,
Ohh you meant the name of the main gallery folder, if so then you also need to point the plugin to that new folder, like this (in your page):
<div id="grid" auto-grid-data="<?php echo get_auto_grid_data("galleries/АБВ"); ?>"></div>
I hope it makes sense
Let me know. thanks Christian
Hi Christian,
Those images probably got some EXIF data so they look correctly when you open them in your computer, but in the web the normal “img” HTML tag doesn’t read any EXIF data, it just display the image as it is, I would recommend you to remove the EXIF data from the image.
some help can be found here: https://stackoverflow.com/questions/37432580/how-to-remove-exif-data-from-image-but-keep-the-orientation
I hope this makes sense,
Best, David
Thanks for the quickly reply but my client doesn’t understand technical tools so he could be lost.
Hi,
Unfortunately the plugin doesn’t have a tool to read the EXIF data and rotate the image accordingly, it is just using the original image file as if you would use it in a normal “img” HTML tag
Maybe in the future I’ll add some feature to handle this
You can read about this here: https://stackoverflow.com/questions/12026441/is-there-a-way-to-tell-browsers-to-honor-the-jpeg-exif-orientation
Best, David
Hello, my current page looks like the MASONRY GALLERY of the examples you have. I would like it to look like the Full width gallery, with the categories centered on top. And I want the images to be so big they touch the sides of the screen, not leaving any white gaps. Where exactly can I adjust these things in the settings? Thank you so much, I love the plugin!
Hello Diana,
The plugin automatically adapts the grid to the 100% of its container, so in your theme you need to make the container of the grid 100% of width and the plugin will adapt to it automatically.
For centering the categories on top, you can do it with CSS, just add this peace of CSS in the CSS section (in the admin settings):
/* make your own style of the filter */
@auto_grid .auto-grid-filters-container{
margin-bottom: 40px;
}
@auto_grid .auto-grid-filters-container{
padding: 0;
text-align: center;
}
@auto_grid .media-boxes-filter li{
list-style: none;
display: inline-block;
margin: 0 9px !important;
}
@auto_grid .media-boxes-filter li a{
color: #999;
text-decoration: none;
background: transparent !important;
padding: 0;
border: 0;
font-size: 12px;
}
@auto_grid .media-boxes-filter li a:hover{
color: #333;
}
@auto_grid .media-boxes-filter li a.selected{
color: #D1474C !important;
background: transparent !important;
box-shadow: none !important;
}
About the image in the lightbox unfortunately there’s no setting for that at the moment
Best, David
I’m trying to make it look and function like this:
http://www.castlecodeweb.com/wp-autogrid/masonry-gallery/but it keeps showing me the View Larger button on hover:
http://mustangace11.16mb.com/photos/I don’t want a view larger button or any text on hover. Just a finger cursor and if the thumbnail is clicked, to open the lightbox.
Ah, nevermind. It was caching the old version. Thanks!
awesome, glad you figured out 
Hey David,
I just purchased your auto grid and I’m super happy with your work!
One question! How can I add a code / delete a code to get rid of the round corners of the media in the gallery?
Thank you!
David
Hi,
Thank you
Do you mean the round corners of the images in the grid? can you show me a living example online? so I can provide an exact CSS solution for this, you can contact me privately via email here: https://codecanyon.net/user/castlecode#contact
Best, David