• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Digits - WordPress Mobile Number Signup and Login

Digits - WordPress Mobile Number Signup and Login v8.4.2.5 + Addons

No permission to download
Hello, I know this is not a DIGITS SUPPORT forum, and I'm sorry for this question, but , if some one can help me to tell me in what digits page, is the responsible to do the 'login' ? I need add in the moment the user is athenticate as 'true' (validate the otp) and the user get 'login' , to 'update_user_meta' but ? still after many hours, with out success.

Any advice ?
 
seems we hit a request new updates for the following:

DIGITS: Additional SMS Gateways - Update to 7.0.
DIGITS: Email Filter Addon. Update to 2.2.
DIGITS: One Click Login/Signup Addon Update to 4.4.
DIGITS: Social Login Addon Update to 2.1.
DIGITS: User Account Approval Update to 2.0.
Hi there ,

is there are any update for those free add-ons
 
how to install addons?

go to this file
admin\includes\functions.php
on lines 827,828 comments or delete this code :

Code:
if (!$plugin['multi_site'] || empty($plugin['multi_site']) || $plugin['multi_site'] == 0)
deactivate_plugins($plugin['plugin']);
}
 
DIGITS: WordPress Mobile Number Signup and Login (latest is v8.3.3.1)

Kindly add latest addons too if you have them. I have latest ones of all except for A and J.

FREE Addons
A. Social Login (latest is v2.1) - old version v2.0 available for now. Last Updated to v2.1 on 2023-09-30
B. Additional Gateways (latest is v6.9) old version v6.8.1 available for now. Last Updated to v6.9 on 2023-12-01
C. Login-Signup Page/Popup Builder (latest is v0.9.7.2)
D. Old Account Migrator (latest is v1.9)


PAID Addons
E. User Account Approval ($19) (latest is v2.0) - credit @maxpayneinfo
F. REST API ($24) (latest is v2.3)
G. Forced Login Page Lock ($9) (latest is v3.0)
H. Country Based SMS Gateway ($19) (latest is v2.1)
I. Additional Fields & Logic Builder ($14) (latest is v2.2) - old version v2.1 available for now. Last Updated to v2.2 on 2023-12-11
J. Email Filter ($9) (latest is v2.2) -
K. One Click Login / Signup ($19) (latest is v4.4)

Not sold anymore:
L. Merge Phone Number (latest is v2.3)
update

digsociallogin​

 
  • Like
Reactions: bytbt
go to this file
admin\includes\functions.php
on lines 827,828 comments or delete this code :

Code:
if (!$plugin['multi_site'] || empty($plugin['multi_site']) || $plugin['multi_site'] == 0)
deactivate_plugins($plugin['plugin']);
}
not working, "archive not compatible"
 
1712138762917.png
finally I succeeded in connecting WPNotif and Digits with WASender
More information. PM me
 
Hello, I know this is not a DIGITS SUPPORT forum, and I'm sorry for this question, but , if some one can help me to tell me in what digits page, is the responsible to do the 'login' ? I need add in the moment the user is athenticate as 'true' (validate the otp) and the user get 'login' , to 'update_user_meta' but ? still after many hours, with out success.

Any advice ?
Hi

If it helps you, I use the below code to update Digits registration number (after OTP validation) to update Woocommerce as well as another plugin I use

add_action( 'profile_update', 'custom_update_checkout_fields' ); // Fires immediately after an existing user is updated.
add_action( 'user_register', 'custom_update_checkout_fields' ); // Fires immediately after a new user is registered.
function custom_update_checkout_fields( $user_id ) {
$current_user = get_userdata( $user_id ); #Here we use get_userdata() and not wp_get_current_user().
#Updating info
if ( $current_user->user_firstname != $current_user->billing_first_name )
update_user_meta( $user_id, 'billing_first_name', $current_user->user_firstname );
if ( $current_user->digits_phone != $current_user->_rtcl_phone )
update_user_meta( $user_id, '_rtcl_phone', $current_user->digits_phone );
if ( $current_user->digits_phone != $current_user->_rtcl_whatsapp_number )
update_user_meta( $user_id, '_rtcl_whatsapp_number', $current_user->digits_phone );
}
 
  • Love
Reactions: abacoin
Hi

If it helps you, I use the below code to update Digits registration number (after OTP validation) to update Woocommerce as well as another plugin I use
I owe you one my brother, thank you very much!...

Of course it was useful... Thank you.

God continue to bless you.
 
  • Love
Reactions: KoolPal
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock