Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function bv_fix_deprecated_visibility( $product_id, $post, $update ) {
- if($post->post_type == 'product') {
- $product = wc_get_product($product_id);
- update_post_meta($product_id,'_visibility',$product->get_catalog_visibility());
- }
- }
- add_action( 'save_post', 'bv_fix_deprecated_visibility', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment