95 comments found.
Hello there, Great script. Am about to purchase the script but i wanted to ask if there is a possibility of using this script on a WordPress website? It would be great if you answer me. Thanks
Is there anyway to define 4 images in the center to be fixed, that use the same image across all 4, when you are using a json source? this is not showing that we purchased but we did.
Hi,
Love this script! However, I’m having an issue with mobile menus. The menu expands and goes over the grid, but you can see the slides which transform – they go over the menu and then behind. It looks funny. I tried playing with the z-indexes, but then the hover doesn’t work on the images. How can I achieve having the hover effect AND a mobile menu which goes over the grid?
Thank you.
How to add items?
My Code :
var page = 2;
var wall = $(".magicwall");
setWall();
function setWall() {
wall.magicWall({
service: "json",
jsonUrl: "photos?page=1",
maxItemWidth: 300,
maxItemHeight: 240,
animations: "slideColumn,slideRow"
});
getNewPhotos(page);
}
function getNewPhotos(page) {
}
$.get('photos', {'page': page}, function (data) {
if (data.success) {
}).done(function () {
page++;
setTimeout(function () {
getNewPhotos(page);
}, 1000);
wall.magicWall("appendItems", data.photos);
}
});
Hi, I’m thinking of buying this script but have a couple of question. I’m looking at the responsive grid and was wondering if the rowCount can go down to 1 for small screens.
Also I need to create a gallery similar to this: http://www.beautifulmindspromotions.co.uk/#home
Can I use 2 different images sizes in the gallery?
Yours,
George.
The plugin doesn’t work for me ( locally). the only option i have is to use the default parameter :
$(”.magicwall”).magicWall();
When i add some options it doesn’t work !
could i have your help please ?
Will this work on a WordPress site?
No, this is a jQuery plugin not a WordPress plugin.
hello sir, I am in the proces of installing this item and I keep getting a black line on top with some characters in it, what am I missing here? http://dreamstream.nl/indexcopy.html
It’s been a week i posted my issue, any luck with the solution? Thanks
I added it on one of my website. Its repeating images.. i mean at a time, a same image is present twice. Please help asap
Thakns
Could you please send me the URL?
Issue you can see here: http://prntscr.com/7kgyo7
Hi, it is possible to insert a spacing between the pictures?
Hello gundf2012,
Spacing between pictures is not supported by default. You can achieve it using CSS but you will break some of the animations.
Best regards
Hello!
I want to put 1,000 images that appear randomly, this is possible?
and the first image is static. To do this I have to modify the code, right?
also wanted to know if it is possible to add a lightbox to click on each image.
Thanks!
Hi!
Can I use margins between the images and texts under the images somehow?
Thanks, janos
hi, i have a question. i need a 9 boxes 3*3 allways fit to the screen width &hight how i can do that?
thanks alot n
Hello, ive buyed this nice plugin but i can’t find the way to specify which images load on an specified place, is there a way? Thank you.
Looking forward for you to add the Instagram hash-tags suppoted
Thx
Hi! How can i do to show the Instagram photos with hashtags i select.
thank you!
Hello hoowei! I am sorry, this option is currently not supported, but I will add it in an upcoming update.
Is there a way that I can connect this to wordpress?
Hello aishny,
You can do this with a little extra effort but it might not be what you expect as it will not be dynamic (it’s only a jQuery plugin not a WordPress plugin). In other words, it will not be able to automatically load your posts thumnails or users avatars or link to posts or pages. PHP coding is required to make this happen.
Best regards
Thanks, what should I do to the code in terms of php to make it work?
Unfortunately, It is not a simple task to accomplish or describe in a comment specially if you want to implement all the features of the jquery version. However, the general idea is to use the WordPress API to loop through a set of posts and use their thumbnails to generate the magicwall items. Visit codex.wordpress.org to learn more about the API.