Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wpweb101/0efa54b7fc10a1416ad5 to your computer and use it in GitHub Desktop.

Select an option

Save wpweb101/0efa54b7fc10a1416ad5 to your computer and use it in GitHub Desktop.
Disable Auto Enable Variations As Downloadable
<?php
function disable_auto_enable_variations_download( $auto_enable ) {
$auto_enable = false;
return $auto_enable;
}
add_filter( 'woo_vou_auto_enable_downloadable_variations', 'disable_auto_enable_variations_download' )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment