Hello,
I’m using the following code on my child theme’s functions.php file:
function customPoiMessage($props, $postid, $poi) {
$props[[‘message’]] = “Hello from post ” . $postid;
return $props;
}
add_filter(‘mappress_poi_props’, ‘customPoiMessage’, 10, 3);
and then the following in my mashup-item.php file:

<div class=”mapp-title”>{{{poi.props.message}}}</div>
However, the output is empty:
<div class=”mapp-item” data-mapp-action=”open” data-mapp-poi=”4″>
<div class=”mapp-title”></div></div>
Has this been deprecated/updated, or am I doing something wrong?
Thanks!