Skip to content

Instantly share code, notes, and snippets.

@zackpyle
Last active May 18, 2023 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zackpyle/a9c629c45e8898fc961f4506ff7a1549 to your computer and use it in GitHub Desktop.
Save zackpyle/a9c629c45e8898fc961f4506ff7a1549 to your computer and use it in GitHub Desktop.
Set zoom level on Beaver Builder Map module #beaverbuilder
<?php // ignore - for github formatting purposes
add_filter( 'fl_builder_map_args', function( $args, $settings ) {
$args['zoom'] = 18;
return $args;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment