How to Change the WordPress Login Page...
This snippet allows you to easily change the URL of the logo on your WordPress login ...

WPCodeBox
39
Optimize your MyListing website’s performance by removing unnecessary map functionality and API calls with this code snippet, ideal for sites not utilizing map services.
<?php
/**
* Author: MyListing Club
* Author URI: https://mylisting.club
*/
add_action( 'wp_enqueue_scripts', function() {
wp_dequeue_script( 'google-maps' );
wp_dequeue_script( 'mylisting-maps' );
wp_dequeue_style( 'mylisting-maps' );
}, 1000 );