Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Ultimate › SMS plugin integration
- This topic has 43 replies, 5 voices, and was last updated 5 years, 2 months ago by WCFM Forum.
- AuthorPosts
- January 28, 2019 at 2:56 pm #45571hello4Participant
Hello there,
I have an issue similar to this thread:
https://wclovers.com/forums/topic/mobile-number-verification-during-vendor-registration/I am developing a solution for a client based in the UAE and unfortunately Twilio doesn’t support sending SMS local numbers in the UAE. Only a handful of providers support this service and I managed to get the access to one of their plugins. If I share the plugin files with you, would you be able to check and confirm if there’s a way for it to work with WCMM/WCFM Ultimate?
Many thanks in advance…
- January 28, 2019 at 3:40 pm #45576WCFM ForumMember
Hi,
Do you know a SMS plugin that works for UAE?
Thank You
- January 28, 2019 at 3:42 pm #45577hello4ParticipantThis reply has been marked as private.
- January 28, 2019 at 3:44 pm #45578hello4ParticipantThis reply has been marked as private.
- January 28, 2019 at 4:12 pm #45588WCFM ForumMember
OK, we are checking this.
Thank You
- February 5, 2019 at 11:11 am #46716hello4Participant
If it’s not compatible, could you please confirm if I can use any MSG91 compatible plugins, as I’ve found out that MSG91 supports sending text messages to local numbers in the UAE?
https://wordpress.org/plugins/search/MSG91/
Thanks and regards,
- February 6, 2019 at 6:03 am #46821WCFM ForumMember
HI,
This plugin – https://wordpress.org/plugins/msg91-woocommerce-sms-integration-lite/
First be sure, whether this works or not!
Thank You
- February 6, 2019 at 1:25 pm #46874hello4Participant
It does send messages that we configure to send through that plugin but I can’t see it sending messages any WCFM or WCMM related messages.
- February 8, 2019 at 5:30 pm #47295WCFM ForumMember
Hi,
That’s great, please add this code to your child theme’s functions.php and know me whether notification SMS are send our or not!
add_filter( 'after_wcfm_notification', function( $author_id, $message_to, $author_is_admin, $author_is_vendor, $wcfm_messages, $message_type ) { global $WCFM, $WCFMmp; $message_to = absint($message_to); if( $message_to ) $message_to_user = 'vendor'; else $message_to_user = 'admin'; $is_notification_send = isset( $WCFMmp->wcfmmp_notification_options[$message_type][$message_to_user]['sms'] ) ? $WCFMmp->wcfmmp_notification_options[$message_type][$message_to_user]['sms'] : 'no'; if( $is_notification_send == 'yes' ) return; $sms_messages = get_bloginfo( 'name' ) . ': ' . $wcfm_messages; $sms_messages = esc_sql( $sms_messages ); $sms_messages = strip_tags( $sms_messages ); $sms_number = ''; if( $message_to_user == 'admin' ) { $sms_number = get_option('admin_phone_number'); } else { $store_user = wcfmmp_get_store( $message_to ); $sms_number = $store_user->get_phone(); } if( $sms_number ) { $adminfile = @wp_remote_get("https://control.msg91.com/api/sendhttp.php?authkey=". get_option('msg_api_key') ."&mobiles=". $sms_number ."&message=".urlencode($sms_messages)."&sender=". get_option('sms_sender_id') ."&route=4&country=0")['body']; $output = fgets($adminfile); fclose($adminfile); } }, 50, 6 );
Thank You
- February 8, 2019 at 7:57 pm #47311hello4Participant
First, the good news. Yes it does send notifications. Bad news is that it sends 4 messages to vendor and 1 to admin/store owner. I am pretty sure you can find a way to fix it. For the vendor’s message, just a generic message is suffice. Something like ‘You have received a new booking. Please check your account and confirm the booking.’ Admini notification isn’t a must but vendor/customer registration OTP is somewhat essential.
Many thanks all the help so far!
- February 9, 2019 at 4:09 am #47324WCFM ForumMember
Hi,
“it sends 4 messages to vendor” – 4 SMS for 1 order/booking?
Well, I gave you that code for testing purpose, if this works perfectly then we will integrate in core plugin. Hence you may also control which notification you want to keep from WCFM Admin Setting -> Notification manager
Vendor registration OTP validation will also there.
Between, you are testing this for UAE, right?
Thank You
- February 9, 2019 at 10:44 am #47375hello4Participant
Hello again,
Yes it sends 4 messages about the same order. In my case I only want them to receive one message saying that they’ve received a ‘booking’, not an order. I guess once you integrate it, I can control these through Notification manager (currently it doesn’t display the SMS notification settings).
Yes I am testing this for the UAE but I believe this will benefit many other countries in the region as Twilio doesn’t support sending messages to local numbers for some countries in the region.
Thanks and regards,
- February 9, 2019 at 5:05 pm #47449WCFM ForumMember
Hi,
Don’t worry, we will integrate this in next update.
Thank You
- February 27, 2019 at 10:32 am #50335d-n-13Participant
Hello,
We’re in Saudi Arabia next to UAE, we’re using https://wordpress.org/plugins/miniorange-otp-verification/ to verify customers numbers using Twilio Gateway and it is working great, now for vendors notifications, what should we do exactly ? do we use a different plugin ? does it work with Twilio as well ? I cannot find documentations or any related information in the knowledgebase
Thank You
- February 27, 2019 at 11:15 am #50357WCFM ForumMember
HI,
Is this working in your country ? https://wordpress.org/plugins/msg91-woocommerce-sms-integration-lite/
Also works this – https://woocommerce.com/products/twilio-sms-notifications/
Thank You
- February 27, 2019 at 12:21 pm #50376d-n-13Participant
I tried https://wordpress.org/plugins/msg91-woocommerce-sms-integration-lite/ I don’t see options to connect twilio.
I’ll think about buying https://woocommerce.com/products/twilio-sms-notifications/
- February 27, 2019 at 12:30 pm #50378WCFM ForumMember
HI,
I tried https://wordpress.org/plugins/msg91-woocommerce-sms-integration-lite/ I donβt see options to connect twilio
– Why you are trying to connect twillo using this?
Well, here is twillo plugin, please test this – https://drive.google.com/file/d/1YY6Tc9Q26TVmQPgoTomH1dBPJoNqLS9w/view?usp=sharing
Thank You
- February 27, 2019 at 1:54 pm #50400d-n-13Participant
Hi, looks like it’s working,
I noticed some issues tho, html code showing in sms.
check screenshot from my phone :
1- https://www.dropbox.com/s/nu7cdamgcqrad78/SMS%201.jpg?dl=0
2- https://www.dropbox.com/s/cc3feqojfl8fqd1/SMS%202.jpg?dl=0
- February 27, 2019 at 3:32 pm #50415WCFM ForumMember
HI,
Which SMS plugin you are using now?
Thank You
- February 27, 2019 at 5:03 pm #50437d-n-13Participant
I’m using 2 now,
My default is https://wordpress.org/plugins/miniorange-otp-verification/ works great with OTP to verify phone numbers in woocomerce registration page + checkout page. Also, it sends orders notifications for users.
Now I’m also using the plugin you gave me https://drive.google.com/file/d/1YY6Tc9Q26TVmQPgoTomH1dBPJoNqLS9w/view?usp=sharing to get vendor notification.
- February 27, 2019 at 5:12 pm #50438WCFM ForumMember
OK, so it’s twillo.
I am checking this.
- February 27, 2019 at 6:46 pm #50463d-n-13Participant
Hi,
my friend tried in his phone and his got same issue too, we both have Samsung S8
Screenshot : https://www.dropbox.com/s/8qt8cunjn2lb19w/IMG-20190227-WA0035.jpg?dl=0
HTML doesn’t work with phones
- March 1, 2019 at 2:39 pm #50765WCFM ForumMember
We will take care of this in next update.
Somehow twilo function not working properly.
- March 1, 2019 at 3:24 pm #50783WCFM ForumMember
Please check now once.
Thank You
- March 6, 2019 at 5:39 pm #51398hello4Participant
Hello there,
What would you like us to test? If it’s about the MSG91 integration, do I still have to use the snippet you gave me on the 08th of February (https://wclovers.com/forums/topic/sms-plugin-integration/#post-47295)? Please clarify.
I have also noticed that MSG91 has listed a few more plugins that we can use with their service and some of them are more up to date than the ‘MSG91 WooCommerce SMS Integration Lite’ plugin: https://help.msg91.com/article/158-how-to-send-sms-from-wordpress
Thanks and regards,
- March 7, 2019 at 5:25 am #51440WCFM ForumMember
Hi,
No, pleas remove that custom code. This plugin already integrated in core.
Thank You
- March 25, 2019 at 10:19 pm #54499d-n-13Participant
After latest updates SMS no longer working in WCFM Dashboard.
When i try to send SMS using the twilio plugin it works fine, but when i try to send sms from WCFM dashboard to any vendor it doesn’t work. Also vendors not getting any other notifications with SMS.
Also in twilio dashboard i see no sms sent to any number.
- March 26, 2019 at 3:57 pm #54591WCFM ForumMember
We are checking this!
- March 26, 2019 at 7:05 pm #54650d-n-13Participant
it is working now, i updated wcfm and also went to notification settings and disabled then enabled some of them. One of them fixed the issue.
- March 26, 2019 at 8:17 pm #54684hello4Participant
Could you please check the MSG91 integration? Vendor registration OTPs are working. Direct messages are working. Booking notifications are not.
Thanks and regards,
- March 28, 2019 at 11:26 am #54935WCFM ForumMember
Sure, we will take a look at this.
- March 28, 2019 at 12:56 pm #54976Pradeep MGuest
Hi @forum_wclovers,
I just noticed that it does send text messages when a booking is paid, but not when the customer selects the Cash on Delivery option. Hope this helps to narrow down the issue.
Best regards,
- March 28, 2019 at 3:24 pm #55020WCFM ForumMember
Thanks for the information!
- April 12, 2019 at 2:25 pm #57450hello4Participant
- August 4, 2019 at 3:19 pm #75185kunal WasekarParticipant
Hey, @forum_wclovers.
Need Help Setting up with “SMSAlert – WooCommerce”
Providing my basic needs just like sending new order SMS to customers and vendor.
but having some issue in billing_phone.
WCFM is using the WordPress default billing_phone field or other for saving vendors phone number. - August 5, 2019 at 12:08 pm #75299WCFM ForumMember
Hi,
Well, for vendors it use “Store Phone” to send SMS.
Thank You
- August 5, 2019 at 12:53 pm #75316kunal WasekarParticipant
Thanks.
How Can I Access Store Name In Template? π
I tried using ” [store_name] ” but its showing Site Title Instead of products Vendor.
Please Help. It will Be Convenient To Delivery Boy SMS Alert.
Attachments:
You must be logged in to view attached files. - August 8, 2019 at 2:58 pm #75773WCFM ForumMember
Hi,
Delivery Boys off receive SMS when new order assign to them.
Please be sure, you have latest WCFM Delivery addon, 1.1.5
Thank You
- August 8, 2019 at 3:27 pm #75779kunal WasekarParticipant
Hello,
Sorry But didn’t get it which msg plugin is wcfm is using to send SMS? - August 12, 2019 at 8:03 am #76195WCFM ForumMember
Hi,
These are compatible SMS plugins –
π¨ All Users β https://wordpress.org/plugins/msg91-woocommerce-sms-integration-lite/
π¨ Indian Users β https://wordpress.org/plugins/sms-alert/
π¨ Other Users β https://woocommerce.com/products/twilio-sms-notifications/
π¨ Netgsm β https://wordpress.org/plugins/netgsm/Please check, which will work for your country!
Thank You
- August 12, 2019 at 8:23 am #76198kunal WasekarParticipant
thanks You so much
- August 13, 2019 at 4:58 am #76338WCFM ForumMember
Welcome π
- August 14, 2019 at 8:10 am #76563kunal WasekarParticipant
Sorry but Delivery boy not receiving any SMS notifications on assign, please help its an emergency. π
- August 20, 2019 at 6:39 am #77416WCFM ForumMember
We have fixed this in latest update, 1.1.6
- AuthorPosts
- The topic ‘SMS plugin integration’ is closed to new replies.