Hi there,
It’s the same as the link provided, the post information is just a sample, but the idea is the same, pick the information displayed in the grid.
Example,
In this line var titleClass = '.eg-quincy-element-3';
we know that element eg-quincy-element-3
is where title layer is displayed. But in your case, instead of post as source type, change it to something that fits your setup like custom meta.
And then, all you need to do is pick the content being displayed in element eg-quincy-element-3
, like this
titleWrap.text(post.find(titleClass).text());
Now, let’s say you don’t want that layer/element to be displayed in your grid items since your target display is in the lightbox, then you can simply hide it with CSS
.eg-quincy-element-3 { display: none; }
In summary, you can add as much as layers/elements as you want and have them the custom meta. You can do that within skin builder, then hide them with CSS and display them in a lightbox.
But yes, I think you should consult it to a developer since it would be complex as we can’t cover any customization.
Thanks.