I am working on a project using galleries deluxe theme. I have set in my params
[params]
[params.galleriesdeluxe]
shuffle = true
But it was not shuffling, I am using a modified header.html, so I output in that file [{{ site.Params.galleriesdeluxe }}], which correctly prints [true] to the page html output, but the gallery was still not shuffling. So I kept digging in, and was looking at partials/gallerydeluxe/head.html, and saw that is where the params get passed in, but see this in my source ...
(() => {
// ns-params:@params
var shuffle = false;
so I knew it was not getting there... so I copied head.html out of gallerydeluxe and pasted it into my own partials folder /partials/gallerydeluxe/head.html with the alert added, and it alerts false but still prints [map[sass_transpiler:dartsass sassvars:map[color_background:#1d1e2c] shuffle:true]] to my page. here is what I have for head.html:
Hello,
I am working on a project using galleries deluxe theme. I have set in my params
But it was not shuffling, I am using a modified header.html, so I output in that file
[{{ site.Params.galleriesdeluxe }}]
, which correctly prints [true] to the page html output, but the gallery was still not shuffling. So I kept digging in, and was looking atpartials/gallerydeluxe/head.html
, and saw that is where the params get passed in, but see this in my source ...so I knew it was not getting there... so I copied
head.html
out of gallerydeluxe and pasted it into my own partials folder/partials/gallerydeluxe/head.html
with the alert added, and it alertsfalse
but still prints[map[sass_transpiler:dartsass sassvars:map[color_background:#1d1e2c] shuffle:true]]
to my page. here is what I have for head.html:Is this a real bug, or am I doing something wrong? Thank you.