Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save runezero/28a72a32cf9c359ce384e4d2a9b0beb9 to your computer and use it in GitHub Desktop.

Select an option

Save runezero/28a72a32cf9c359ce384e4d2a9b0beb9 to your computer and use it in GitHub Desktop.
[Enable product revisions] Enable WooCommerce product revisions on products, only enable on shops with small amount of products #woocommerce
add_filter( 'woocommerce_register_post_type_product', 'wc_modify_product_post_type' );
function wc_modify_product_post_type( $args ) {
$args['supports'][] = 'revisions';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment