How do I stop the the album descriptions from showing in the album sets. I can stop the whole Title and Description with css as discussed in other conversations, but how to I just stop the description. It has to be in the publisher for social media sharing but I don’t what it showing on the page.
There are two ways with css.
first is display:none; That will take it out of the document flow
figcaption .album-description {
display:none;
the other is visibility:hidden; which I believe leaves it in the document flow but renders it hidden
figcaption .album-description {
visibility:hidden;
Which design module are you talking about?
My pangolin album set templates… i think thats what you are asking. a toggle to show/not show would be awesome.
yes thanks! the display:none works great. visibility:hidden just hides the text but the box space is still there.
Done. Will be in the next release, and will appear as a “Visibility” toggle in the Pangolin Set designer options for the descriptions.