<?php
// add this to your child themes functions.php file
add_filter( 'facetwp_map_init_args', function ( $args ) {
$args['init']['scrollwheel'] = true;
return $args;
} );
Code snippets for FacetWP
<?php
// add this to your child themes functions.php file
add_filter( 'facetwp_map_init_args', function ( $args ) {
$args['init']['scrollwheel'] = true;
return $args;
} );