Support

Account

Home Forums Feature Requests Disable scroll wheel on Google Maps field in admin Reply To: Disable scroll wheel on Google Maps field in admin

  • You can do this using the PHP acf/admin/input_head action to write JavaScript that uses the google_maps_args ACF JavaScript filter.

    add_action( 'acf/input/admin_head', function(){
    	?>
    	<script type="text/javascript">
    	(function($){
    		acf.add_filter( 'google_map_args', function( options, $field ){
    			return $.extend({scrollwheel: false}, options);
    		} )
    	})(jQuery);
    	</script>
    	<?php
    });