- This topic has 3 replies, 2 voices, and was last updated 9 years ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Epik Theme Support › Removing URLs form caption area on Portfolio page
Hello!
The URLs of my images are showing up where a photo caption might be on my portfolio page. I’d like to remove these, and not have any captions at all, but cannot figure out how.
That’s weird I’ve never seen that show up before. It must be a setting or something. If you’ve already set your content limit to “0” and it’s still showing up, then you could target the code directly and add display: none;
in your css like this –
.portfolio .entry-permalink {
display: none;
}
Hey Wes, thanks for the quick reply! I seem to have figured it out. When I created the posts that are shown in portfolio, I just used an image with no other content and no title. The code seemed to pull the URL in absence of either of those things. As soon as I added titles, the URLs went away. And because I have content set to zero, now nothing shows up… just like I want it to work ๐
Thanks for letting me know. I’ll keep this in mind if I come across a similar issue in the future.