Changeset 1894353
- Timestamp:
- 06/18/2018 07:34:17 AM (7 years ago)
- Location:
- tidio-live-chat/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
tidio-live-chat/trunk/media/js/options.js
r1821124 r1894353 143 143 return false; 144 144 } 145 _func(TidioChatWP.chatUrl + '/access?privateKey=' + r.value.private_key + '&app=chat ');145 _func(TidioChatWP.chatUrl + '/access?privateKey=' + r.value.private_key + '&app=chat&utm_source=platform&utm_medium=wordpress'); 146 146 // save this in wordpress database 147 147 jQuery.post(ajaxurl, {'action': 'tidio_chat_save_keys', 'public_key': r.value.public_key, 'private_key': r.value.private_key}, function(response) { -
tidio-live-chat/trunk/options.php
r1840567 r1894353 4 4 5 5 <div id="welcome-text"> 6 <h1>H ello, It's great that you have installed Tidio Chat.</h1>7 <p> To complete integration with Tidio Chat, please select from the options below. If you have an account with us already, then the current project will be assigned to that account, If you do not have an account with us or would like to create a new one, pleaseselect the option on the right.</p>6 <h1>Hi there! Great to see you’ve installed Tidio Chat.</h1> 7 <p>Select one of the options below and your integration will be complete. If you’ve already got a Tidio account, the current project will be connected to that account. However, if you don’t have an account with us (or you’d like to create a new one) - just select the option on the right.</p> 8 8 </div> 9 9 <div id="after-install-text"> 10 10 <h1>Your site is already integrated with Tidio Chat</h1> 11 <p> Now you just need to select the "Tidio Chat" tab on the left to go to your panel, or you can open the chat panel by clicking the link below.</p>11 <p>All you need to do now is select the “Tidio Chat” tab on the left - that will take you to your Tidio panel. You can also open the panel by using the link below.</p> 12 12 <p><a href="#" id="open-panel-link" class="button button-primary tidio-button" target="_blank" style="margin-left: auto; margin-right: auto; display: block;">Go to Panel</a></p> 13 13 </div> -
tidio-live-chat/trunk/readme.txt
r1821124 r1894353 119 119 == Changelog == 120 120 121 = 3.3.1 = 122 * Refreshed texts within the plugin to be more intuitive. 123 121 124 = 3.3.0 = 122 125 * New button added to reset the account data. -
tidio-live-chat/trunk/tidio-elements.php
r1821124 r1894353 10 10 * License: GPL2 11 11 */ 12 define('TIDIOCHAT_VERSION', '3.3. 0');12 define('TIDIOCHAT_VERSION', '3.3.1'); 13 13 14 14 class TidioLiveChat { … … 218 218 219 219 public static function getRedirectUrl($privateKey) { 220 221 return self::$chatUrl . '/access?privateKey=' . $privateKey; 220 return self::$chatUrl . '/access?' . http_build_query( 221 [ 222 'privateKey' => $privateKey, 223 'utm_source' => 'platform', 224 'utm_medium' => 'wordpress', 225 ] 226 ); 222 227 } 223 228
Note: See TracChangeset
for help on using the changeset viewer.