Home › Forums › MapPress Support › HTML in info box/excerpt › Reply To: HTML in info box/excerpt
December 23, 2020 at 8:16 am
#18818
Participant
Thanks! I tried do_shortcode with a very basic shortcode and it did work, so must be my shortcodes.
For anyone else that might be reading this ticket – this is the code to put in your functions.php to return your excerpt with the html in your poi:
function rawpoi($excerpt, $raw) {
return $raw;
}
add_filter(‘mappress_poi_excerpt’, ‘rawpoi’, 10, 2);