- This topic has 2 replies, 2 voices, and was last updated 7 years, 3 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP Photo Seller › How do we remove or hide "Posted by" data on the Gallery Pages?
[http://dsvisualart.com/photogallery/photographers-choice/]
How do I hide the “Posted by” commentary box on my galleries? Is just underneath the gallery title. Thanks in advance
It’s coming from your theme, as part of the “post-meta” CSS class. You should edit your theme’s CSS file, or download the Custom CSS plugin:
https://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
And then modify the “post-meta” CSS class as follows:
.post-meta {
display: none;
}
Thank you very much!