Make Admin Side Fields Mandatory/Required
To set required fields in woocommerce when adding a product, you will need to use hooks to enforce validation before the product is saved // Function to validate required fields before saving product function custom_validate_required_fields( $product_id, $product ) { $errors = array(); // Check if Post Title is empty if ( empty( $product->get_title() ) ) … Read more