Require Minimum Characters for Username

/** * Name: fw_minimumAccountUsernameChars (“fw” indicates “FreeWheelers”) * Desc: Require the account username be at least 8 characters **/ add_filter(‘frm_validate_field_entry’, ‘fw_minimumAccountUsernameChars’, 10, 3); function fw_minimumAccountUsernameChars( $errors, $field, $posted_value ){ if ( $field->id == MEMBER_REGISTRATION_USER_NAME_FIELD_ID ) { $minimum = 8; if…Continue reading

Custom Vendor Product Fields for HTS and Export Classification Number

// Output the custom HTS Classification at the bottom of the General tab of Product Edit Page. add_action( ‘wcv_product_options_general_product_data’, ‘wcv_product_hts_classification’ ); function wcv_product_hts_classification( $object_id ){ WCVendors_Pro_Form_Helper::textarea( array( ‘post_id’ => $object_id, ‘id’ => ‘wcv_custom_product_hts_classification’, ‘label’ => __( ‘HTS Classification’, ‘wcvendors-pro’ ),…Continue reading