Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created February 7, 2024 06:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/b067961f508c14f1cc44a0a261aeec4f to your computer and use it in GitHub Desktop.
Save KaineLabs/b067961f508c14f1cc44a0a261aeec4f to your computer and use it in GitHub Desktop.
Youzify - Disable WooCommerce Checkout Integration
<?php
//Youzify - Disable WooCommerce Checkout Integration
add_filter( 'youzify_supported_wc_pages', 'yzc_supported_wc_pages' );
function yzc_supported_wc_pages( $pages ) {
unset( $pages['checkout'] );
return $pages;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment