Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Ian Dunn

    (@iandunn)

    Hi yzqiang, the plugin doesn’t support that right now, but I’ll add it in a future version. In the meantime, you can add this to your theme’s functions.php or a functionality plugin:

    function updateBGMPPostTypeParams( $params )
    {
        $params[ 'has_archive' ] = true;
    
        return $params;
    }
    add_action( 'bgmp_post-type-params', 'updateBGMPPostTypeParams' );

    After you set that you, you’ll need to visit the Permalink Settings page to flush the rewrite rules.

    Then, you can view the archive page at https://example.com/placemarks

    Thanks for that tip it works fine when i manually view the post now

    However I was wondering how to make the MAP Placemarkers open the post not in a lightbox ?

    Plugin Author Ian Dunn

    (@iandunn)

    The plugin doesn’t use a lightbox, so it sounds like that’s something your theme is doing.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Basic Google Maps Placemarks] How to access placemarks list archive directly’ is closed to new replies.