How to Limit WooCommerce Cart to One P...
Optimize your WooCommerce store for single item sales. This snippet limits the cart t...

WPCodeBox
386

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





