Home / Admin / Disable IP Geo lookup service
Duplicate Snippet

Embed Snippet on Your Site

Disable IP Geo lookup service

That script is the one making the call to the geolocation endpoint, the rest of the code will not run.
Note that the call is handled in the background via Ajax and should not affect the checkout screen, even if the endpoint is down.

Code Preview
php
<?php
add_action( 'wp_enqueue_scripts', function() {
	wp_dequeue_script( 'edd-pro-checkout' );
}, 50 );

Comments

Add a Comment