Plugin Directory

Changeset 2170451


Ignore:
Timestamp:
10/09/2019 08:05:05 AM (6 years ago)
Author:
wilsos6
Message:

Version 2.2.5 commit

Location:
joy-of-text
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • joy-of-text/trunk/classes/class-jot-plugin-settings.php

    r2120548 r2170451  
    509509            $html .= "<ul class='jot-getstarted-nested'>";
    510510            $html .= "<li>" . "<span class='getstarted-description'>" . __("To use this plugin you'll need a Twilio account.","jot-plugin") . "</span>" . "</li>";
    511             $html .= "<li> " . "<span class='getstarted-description'>" . sprintf (__("Register an account at %s, purchase a phone number and get your unique 'Twilio Account SID' and 'Twilio Auth Token'.","jot-plugin"), $twilio_url) . "</span>" . "</li>";
     511            $twilio_referral_url = "<a href='https://www.twilio.com/referral/vDJcVW' target='_blank'>" . __("referral","jot-plugin") .  "</a>";
     512            $twilio_referral_tcs_url = "<a href='https://www.twilio.com/legal/referral-program' target='_blank'>" . __("here","jot-plugin") .  "</a>";
     513            $html .= "<li> " . "<span class='getstarted-description'>" . sprintf (__("If you're new to Twilio, you can get <b>$10</b> added to your Twilio account, using this %s link.","jot-plugin"), $twilio_referral_url) . "</span>" . "</li>";
     514        //$html .= "<li> " . "<span class='getstarted-description'>" . sprintf (__("The terms and conditions of Twilio's referral program are available %s.","jot-plugin"), $twilio_referral_tcs_url) . "</span>" . "</li>";
     515        $html .= "<li> " . "<span class='getstarted-description'>" . sprintf (__("Register an account at %s, purchase a phone number and get your unique 'Twilio Account SID' and 'Twilio Auth Token'.","jot-plugin"), $twilio_url) . "</span>" . "</li>";
    512516            $url = "<a href='" . admin_url() .   "admin.php?page=jot-plugin&tab=smsprovider&section=twiliosettings' target='_blank'>" . __("Messaging-Settings-Twilio Settings","jot-plugin") .  "</a>";
    513517            $html .= "<li> " . "<span class='getstarted-description'>" . sprintf (__("Go to %s and enter your 'Twilio Account SID' and 'Twilio Auth Token' and press the 'Save Settings' button.","jot-plugin"), $url) . "</span>" . "</li>";
  • joy-of-text/trunk/joy-of-text.php

    r2120548 r2170451  
    1717 * Plugin URI:        http://www.getcloudsms.com
    1818 * Description:       Send SMS and text-to-voice messages to your customers, subscribers, followers, members and friends.
    19  * Version:           2.2.4
     19 * Version:           2.2.5
    2020 * Author:            Stuart Wilson
    2121 * Author URI:        http://www.getcloudsms.com
     
    3232  *
    3333  * Version
     34  * 2.2.5 - Added link to Twilio referral code.
    3435  * 2.2.4 - Added filters which are called when a new subscriber is added or removed from the group.
    3536  * 2.2.3 - Fixed issue where settings were not saving correctly.
     
    114115            $this->product = "JOT Lite";                       
    115116            $this->token = 'jot-plugin';
    116             $this->version = '2.2.4';
     117            $this->version = '2.2.5';
    117118            $this->debug = false;           
    118119           
  • joy-of-text/trunk/readme.txt

    r2164890 r2170451  
    44Tags:  twilio, message, sms, mms, text, mobile, sms scheduler, scheduler, woocommerce, membermouse, voice message, notification, subscribe, buddypress, gravity forms
    55Requires at least: 3.0.1
    6 Tested up to: 5.2.2
    7 Stable tag: 5.2.2
     6Tested up to: 5.2.3
     7Stable tag: 5.2.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    151151== Frequently Asked Questions ==
    152152
     153= What are the associated costs ? =
     154
     155This plugin is free, however to use it, you need a Twilio account and number. Twilio will charge you a monthly fee for a phone number and they'll charge you for each message you send. The Twilio charges vary, depending on which country you are in.
     156
     157Please refer to [Twilio's charges](https://www.twilio.com/sms/pricing) for more detail.
     158
     159If you're new to Twilio or upgrading your existing account from a trial to full account, you can get $10 credit by using this [referral link](https://www.twilio.com/referral/vDJcVW).
     160
     161
    153162= Are other SMS providers supported? =
    154163
     
    194203Using this feature, you can use the "welcome message" to send new subscribers a link or links to your site or media via SMS messages.
    195204
    196 = What are the associated costs ? =
    197 
    198 This plugin is free, however to use it, you need a Twilio account and number. Twilio will charge you a monthly fee for a phone number and they'll charge you for each message you send. The Twilio charges vary, depending on which country you are in.
    199 
    200 Please refer to [Twilio's charges](https://www.twilio.com/sms/pricing) for more detail.
    201205
    202206= What hooks are available? =
     
    219223
    220224where $member is an array containing details of the member and $group is the group id, which will be set to 1.
     225
     226= Can I change JOTFORM's colors? =
     227To change the colors of the labels and fields of the JOTFORM shortcode, add the following CSS to your theme
     228
     229`#jot-confirm-header {
     230    color: #3fe316;
     231}
     232
     233label[for="jot-subscribe-name"] {
     234    color: #ff0000;
     235}
     236
     237#jot-subscribe-name {
     238    color: #a9a941;
     239}
     240
     241label[for="jot-subscribe-num"] {
     242    color: #3169d1;
     243}
     244
     245#jot-subscribe-num {
     246    color: #ff0a51;
     247}`
     248
     249
    221250
    222251== Screenshots ==
     
    24627512. **Purchased Extension** The Buddypress integration tab, allowing you to synchronise your Woo customer into JOT.
    247276screenshot-11.png
     277
    248278== Changelog ==
     279
     280= 2.2.5 =
     281* Added a link to the Twilio referral scheme on the Get Started tab.
    249282
    250283= 2.2.4 =
     
    363396== Upgrade Notice ==
    364397
    365 = 2.2.4 =
    366 * Added new action hooks, which are triggered when a user is added (through the admin screens or subscription form) and deleted.
     398= 2.2.5 =
     399* Added a link to the Twilio referral scheme on the Get Started tab.
     400
Note: See TracChangeset for help on using the changeset viewer.