Skip to content

Instantly share code, notes, and snippets.

@bentasm1
Created November 17, 2015 16:42
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/1d3be3dcd0a3c1d1fbad to your computer and use it in GitHub Desktop.
Save bentasm1/1d3be3dcd0a3c1d1fbad to your computer and use it in GitHub Desktop.
WC Vendors Pro -- Disable the Product Delete Button
/* WC Vendors Pro - Disable Product Delete */
add_filter('wcv_product_table_row_actions_delete', 'custom_wcv_product_table_row_actions_delete');
function custom_wcv_product_table_row_actions_delete() {
$text = '';
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment