AI Verified

Name

WooCommerce Only Allow Number Input For Billing Phone

About

This snippet adds jQuery (run form the footer for performance reasons) which only allows number input in the billing phone field on the checkout. Specifically, it will find and delete anything which is not a number. This means the user will be unable to add any special characters, spaces, or letters in the billing phone field. This acts as an input mask rather than a validation method – the user simply will not be able to enter anything but numbers in the field.

Language

PHP

Rating

Voted: 0 by 0 user(s)

How to Setup Snippet

Simply copy the pre-coded solution to your active child theme’s functions.php or preferably the Code Snippets Plugin.

Link for further information:

The author has provided the following URL that may be helpful to setting up or using this snippet:

https://www.ecommercehints.com/woocommerce-only-allow-number-input-for-billing-phone

Codevault

ecommercehints

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: 6.1

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

Website/ Profile URL:

https://www.ecommercehints.com/

History

Last modified:

15/11/2022

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

WooCommerce Only Allow Number Input For Billing Phone

 
                    
1/**
2 * Snippet Name: WooCommerce Only Allow Number Input For Billing Phone
3 * Snippet Author: ecommercehints.com
4 */
5 
6add_action('wp_footer', 'ecommercehints_billing_phone_validation');
7function ecommercehints_billing_phone_validation() {
8 if ( is_checkout() && ! is_wc_endpoint_url() ) :
9 ?>
10 <script type="text/javascript">
11 jQuery( function($){
12 $('#billing_phone').on( 'input focusout', function() {
13 var p = $(this).val();
14 $(this).val($(this).val().replace(/[^0-9]/g, ''));
15 });
16 });
17 </script>
18 <?php
19 endif;
20}

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

Unverified

0

WooCommerce Custom My Account Navigation Tab Icons

Added: 1 year ago

Last Updated: 1 year ago

You may wish to replace the default My Account Navigation Link icons with icons which are more appropriate and inline with your business branding. In our example, we have replaced the dashboard icon (...

WooCommerce

AI Verified

0

WordPress Create Custom User Role

Added: 1 year ago

Last Updated: 1 year ago

This code snippet creates a custom role showing every possible default capability.

WooCommerce

AI Verified

0

WooCommerce Custom Text Before Register Form Fields

Added: 1 year ago

Last Updated: 1 year ago

This quick guides shows you how you can add any custom text under the Register Form heading, above the form fields on the My Account page. By adding custom text above the register form fields on the m...

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

5

WooCommerce Show Number Of People Viewing Product

Added: 1 year ago

Last Updated: 1 year ago

We want to make this solution absolutely clear from the outset. This snippet does NOT generate the actual number of people viewing the product. It shows a randomly generated number in the range of two...

WooCommerce

AI Verified

5

WooCommerce Show Number Of Units Sold On Product Page

Added: 1 year ago

Last Updated: 2 hours ago

Showing the number of product units sold on the single product page is a great way to introduce Fear Of Missing Out (FOMO). You can highlight how many products are sold to let customers know a product...

WooCommerce

AI Verified

2

WooCommerce Add Content Under The Proceed To Checkout Button On The Cart Page

Added: 1 year ago

Last Updated: 1 year ago

How many times have you bought something online and seen trust symbols near the proceed to checkout button on the cart page? “30 Day Money Back Guarantee” or “Secure Checkout” are popular examples. By...