Demo map for standart WordPress Post by filter categories and tags. Map Template: default left layout.
Filters view: dropdown. Tooltip present: default. Shortcode: full. Navlist Event: hover
FAQ
Do not display additional field if empty
I don’t want display custom field if field are empty. How can do that ? Is it possible to use PHP on layout editor for that ?
You need add class to div additional tag
1 2 |
<div class="empty_|post::openinghours|">opening Hours: |post::openinghours|</div> <div class="empty_|post::nearestsubway|">nearest Subway: |post::nearestsubway|</div> |
and add css
1 2 3 |
.empty_ { display: none; } |