Documentation Tag: Code

How to Enable Quick Reply SMS For a Custom Number in WordPress Admin?

1. Call the function: To enable the quick reply feature for a number or a group of subscribers, first, you must call wp_sms_render_quick_reply() function where the user’s number or the group name is printed in the front-end files. 2. Echo the template: Then you must echo the following helper on the front-end page that you […]

Read More Read more

Quick Reply for SMS with wp_sms_render_quick_reply()

In this document, we will show you how to use the wp_sms_render_quick_reply() function to enable the quick reply feature for a given phone number or group of numbers in the WP SMS plugin for WordPress. The quick reply feature allows users to quickly and easily respond to SMS messages with predefined responses or custom text. […]

Read More Read more

Integrate SMS with Other Services Using wp_sms_send

The wp_sms_send action is a useful tool for developers using the WP SMS plugin. This action will run after an SMS is sent, allowing you to perform additional actions or customizations based on the SMS that was just sent. Whether you want to track the success of your SMS campaigns or create custom integrations with […]

Read More Read more

Customize SMS Subscription with wp_sms_add_subscriber

This action allows you to perform custom actions when a new user subscribes to SMS notifications in WordPress. Use this action to trigger events or integrate with other services when a user opts in to receive SMS updates. Example: Send an SMS to a user when registering a new subscriber.

Read More Read more

Optimize SMS Sender’s Number with ‘wp_sms_from’

Overview The WP SMS plugin includes a filter called “wp_sms_from” that allows you to modify the sender’s phone number for SMS messages sent through the plugin. This filter can be useful if you want to customize the phone number that messages are sent from, or if you want to use a different phone number for […]

Read More Read more

Optimize SMS Recipients with ‘wp_sms_to’

Overview The WP SMS plugin includes a filter called “wp_sms_to” that allows you to modify the receiver’s phone number for SMS messages sent through the plugin. This filter can be useful if you want to customize the phone numbers that messages are sent to, or if you want to add additional recipients to the messages. […]

Read More Read more

Modify Text Messages with ‘wp_sms_msg’

Overview The WP SMS plugin includes a filter called “wp_sms_msg” that allows you to modify the text messages that are sent through the plugin. This filter can be useful if you want to customize the messages that are sent to your customers or clients, or if you want to add additional information to the messages. […]

Read More Read more

wp_sms_subscriber_form()

Description Showing the subscribers form. Simple Example Adding the subscribers from a page template. Advanced Example Adding the subscribers from a page template with custom fields

Read More Read more

Get Options with wp_sms_get_option() in WordPress

In this document, we will show you how to use the wp_sms_get_option() function to retrieve any available options from the WP SMS or WP SMS Pro plugin for WordPress. This function returns a variety of settings and options values for your SMS messages to you, as well as options from the default WordPress installation. Let’s […]

Read More Read more

Send SMS Messages with wp_sms_send() in WordPress

In this document, we will show you how to use the wp_sms_send() function to send SMS messages through the WP SMS plugin for WordPress. This function is a powerful tool that allows you to send SMS messages to any phone number or group of numbers, with customizable text and options. We will provide you with […]

Read More Read more