Skip to content

Snippet: Prevent Double Click on WPBakery Google Map

By default the Google Map widget in the WPBakery page builder removes the pointer-events when not hovering on the Google map to prevent conflicts with other functions in the plugin but you can easily reset this using the following custom CSS. Be sure to test your map and make sure there are no issues when using this code.

​.wpb_map_wraper iframe { pointer-events: auto !important; }
Back To Top