Thread Starter
Gcpt
(@gcpt)
I’ve updated back to 1.4 to enable viewing of the gallery pages. Everything works fine on my test site but not the live site. I disabled all plugins and still no captions. When I revert to my old theme the captions are there.
Thread Starter
Gcpt
(@gcpt)
Sadly have had to roll back to 1.3 as have been unable to solve the problem.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
I think I see the problem coming from the theme’s style.css file:
.gallery-columns-5 .gallery-caption,
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
display: none;
}
Try this, go to the “Additional CSS” part of the dashboard and add this code:
.gallery-columns-5 .gallery-caption,
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
display: block;
}
Thread Starter
Gcpt
(@gcpt)
Thank you so much Andrew. Working perfectly.