Skip to content

Instantly share code, notes, and snippets.

@dennisnissle
Created May 10, 2024 11:39
Show Gist options
  • Save dennisnissle/185a4469fe94e06135203ca605141c6f to your computer and use it in GitHub Desktop.
Save dennisnissle/185a4469fe94e06135203ca605141c6f to your computer and use it in GitHub Desktop.
Disable Germanized Shipments Integration mini Plugin
<?php
/**
* Plugin Name: Disable Germanized Shipments
* Plugin URI: https://www.vendidero.de/woocommerce-germanized
* Description: Disables the Germanized Shipments integration
* Version: 1.0.0
* Author: vendidero
* Author URI: https://vendidero.de
*
* @author vendidero
*/
add_filter( 'woocommerce_gzd_shipments_enabled', '__return_false' );
add_filter( 'woocommerce_gzd_dhl_enabled', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment