I am using the galleria script for my website, with the facebook mod. I want to modify it a bit, so the albumid that should be showing, is the ID given in query string.
My code is:
Galleria.run('#galleria', { facebook: 'album:000000000', width: 745, height: 550, lightbox: true});
Where i want album:000000000, to be album:-querystring albumid-
For example, my page is album.php?albumid=123456, i want the code to be:
Galleria.run('#galleria', { facebook: 'album:123456', width: 745, height: 550, lightbox: true});
Could someone help me with a certain code?