Reply To: Links in map open a new window

Home Forums MapPress Support Links in map open a new window Reply To: Links in map open a new window

#22016
Chris
Keymaster

    Hi,

    Thanks, I see what you want now. Unfortunately, this functionality (of opening a new tab on image click) is hardcoded in the plugin. I do plan to revisit those settings in a future release, but for now I’m afraid that’s the functionality.

    If you’re familiar with PHP, you could try this:

    1. In the ‘thumbnails’ setting, select ‘POI images’ – to turn off the featured images

    2. In your theme’s functions.php add a little code to feed the featured image URL to the mashup POI template

    add_filter('mappress_poi_props', function($props, $oid, $poi, $otype) {
    $props['zzurl'] = get_the_post_thumbnail_url($oid, 'full');
    return $props;
    }, 10, 4);
    

    3. In the mashup popup template, use the URL to add an anchor link to the post:

    
    <div class="mapp-title"><a href="{{{poi.url}}}" target="_blank" rel="noopener">{{{poi.title}}}</a></div>
    <a href="{{{poi.url}}}"><img src="{{{poi.props.zzurl}}}" /></a>
    <div class="mapp-body">{{{poi.body}}}</div>