Skip to content

Instantly share code, notes, and snippets.

@bentasm1
Created October 17, 2015 16:36
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 bentasm1/26ae9cd229c6d8b13526 to your computer and use it in GitHub Desktop.
Save bentasm1/26ae9cd229c6d8b13526 to your computer and use it in GitHub Desktop.
WC Vendors Pro - Remove the "Allow Backorders" Checkbox
/* WC Vendors Pro - Removes the "Allow Backorders?" Checkbox from Vendors add/edit Product Page */
add_filter('wcv_product_backorders', 'custom_wcv_product_backorders');
function custom_wcv_product_backorders() {
return '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment