That’s the default behavior, but you can set it to automatically scroll to the map when a link is clicked by modifying the bgmp_map-options filter and setting viewOnMapScroll to true.
This is the modified filter you need (in a child theme or functionality plugin):
function set_bgmp_map_options( $options ) {
$options[‘viewOnMapScroll’] = true;
return $options;
}
add_filter( ‘bgmp_map-options’, ‘set_bgmp_map_options’ );
Thread Starter
cash3p
(@cash3p)
Thanks to both of you. 🙂 Problem solved!
Also learned about making a functionality plugin too…didn’t know about that.
Thanks Again!