woocommerce_api_edit_product_shipping_class

woocommerce_api_edit_product_shipping_class

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

do_action('woocommerce_api_edit_product_shipping_class') is found 1 times:

  • /includes/legacy/api/v3/class-wc-api-products.php line 3272
    			if ( is_wp_error( $update ) ) {
    				throw new WC_API_Exception( 'woocommerce_api_cannot_edit_product_shipping_class', __( 'Could not edit the shipping class', 'woocommerce' ), 400 );
    			}
    
    			do_action( 'woocommerce_api_edit_product_shipping_class', $id, $data );
    
    			return $this->get_product_shipping_class( $id );
    		} catch ( WC_API_Exception $e ) {
    			return new WP_Error( $e->getErrorCode(), $e->getMessage(), array( 'status' => $e->getCode() ) );
    		}
    	}