Hiding "Features" in Property Details?
-
I’ve submitted my question over at Studiopress but wanted to submit it here too:
I was wondering how you can hide Tags from a custom post but still use them (just invisible). For example, I’m using the AgentPress theme and tags are setup as “Features.” When you add the Features (tags) they appear on a Listing page inside the Property Details div. I need to retain this functionality for Search but I do not want them visible anywhere on the site. Make sense?
https://64.31.38.66/~retailpl/listings/barrett-parkway/
I was able to hide them using CSS:
.entry-content a, .entry-content a:visited {
display: none;
}However, the comma’s still appear. I’ve found the code in the AgentPress Listing plugin here:
case “listing_features”:
echo get_the_term_list( $post->ID, ‘features’, ”, ‘, ‘, ” );
break;Not sure what the preferred method is for this but would love for these to not appear at all on the page yet still be attached to the post.
Cheers!
JChttps://www.ads-software.com/extend/plugins/agentpress-listings/
- The topic ‘Hiding "Features" in Property Details?’ is closed to new replies.