How to Add a WPCodeBox Link to Your Wo...
This simple script adds an icon and text link for WPCodeBox to your WordPress Admin B...

WPCodeBox
257
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 );





