Home › Forums › MapPress Support › Mashup Popup template › Reply To: Mashup Popup template
May 17, 2019 at 3:33 am
#18321
Hi Chris,
Are you talking about this functionnality :
<?php
function myfilter($props, $postid, $poi) {
$props[‘message’] = “Hello from post ” . $postid;
return $props;
}
add_filter(‘mappress_poi_props’, ‘myfilter’, 10, 3);
?>
Thanks