Changeset 1368257
- Timestamp:
- 03/10/2016 12:26:24 PM (10 years ago)
- Location:
- talkus/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
talkus.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
talkus/trunk/readme.txt
r1343867 r1368257 1 === Talkus for WordPress===1 === Your help desk. In Slack. === 2 2 Contributors: perenoel, acemtp 3 3 Tags: livechat, talkus, support, plugin, widget, customer support, slack 4 Stable tag: 0. 34 Stable tag: 0.4 5 5 Requires at least: 4.2 6 6 Tested up to: 4.2.2 … … 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html 9 9 10 Chat with your website users from Slack.10 With Talkus, Slack becomes the place for your team to communicate with customers, personally, on your website by live chat or by email, phone or SMS. 11 11 12 12 == Description == 13 13 14 Talkus is the most powerful chat widgetentirely based on Slack. Increase visitor conversion, user retention, engagement and create happy customers in a snap.14 Talkus is the most powerful help desk entirely based on Slack. Increase visitor conversion, user retention, engagement and create happy customers in a snap. 15 15 16 16 Your users see a beautiful chat window on your website: all their chat messages are piled in your Talkus channel in your own Slack. With simple Slack commands, you can assign them to your team, take screenshots for your users and invite your expert teammates to the discussion, in addition to all the cool Slack features (auto-completion, emojis, etc). Talkus also automatically performs a user satisfaction survey when you close tickets and remembers all you need to know about your customers. 17 17 18 You don't need another complicated and expensive app to chat withyour online customers: install, customize the look and display of Talkus and invite teammates in a few seconds, and start making your users happy.18 You don't need another complicated and expensive app to help your online customers: install, customize the look and display of Talkus and invite teammates in a few seconds, and start making your users happy. 19 19 20 20 For more details, visit https://talkus.io and talk to us! … … 22 22 == Installation == 23 23 These instructions assume you have already signed up for Talkus and have gone through the setup here https://app.talkus.io/ 24 You will find in screenshot image to help you to find your application ID.24 You will find in screenshot image to help you to find your Application Id. 25 25 26 1. Download the zip 26 1. Download the zip 27 27 2. Install the plugin through the 'Plugins > Add New' menu in WordPress and click on 'upload plugin' 28 28 3. Click on choose file, select the zip you download in step 1 and click on 'install Now' 29 29 4. Activate the plugin through the 'Plugins' menu in WordPress 30 5. Add your application ID through the 'Tools > Talkus' menu in WordPress (Your application IDcan be found on https://app.talkus.io)30 5. Add your Application Id through the 'Tools > Talkus' menu in WordPress (Your Application Id can be found on https://app.talkus.io) 31 31 32 32 == Screenshots == 33 1. Talkus settings page - find your application ID34 2. Talkus WordPress settings - setup with your application ID33 1. Talkus settings page - find your Application Id 34 2. Talkus WordPress settings - setup with your Application Id 35 35 3. Example of Talkus discussion 36 36 37 37 == Changelog == 38 39 = 0.4 = 40 Update description of the product 38 41 39 42 = 0.3 = -
talkus/trunk/talkus.php
r1342935 r1368257 2 2 3 3 /** 4 * Plugin Name: Talkus 4 * Plugin Name: Talkus. Your help desk. In Slack. 5 5 * Plugin URI: https://github.com/peernohell/wp-talkus 6 * Description: Chat with your website users from Slack7 * Version: 0. 38 * Author: Francois Lecroart / talkus6 * Description: With Talkus, Slack becomes the place for your team to communicate with customers, personally, on your website by live chat or by email, phone or SMS. 7 * Version: 0.4 8 * Author: Francois Lecroart / Talkus 9 9 **/ 10 10 … … 14 14 exit; 15 15 } 16 17 if ( is_admin() ) {18 19 if ( file_exists( plugin_dir_path( __FILE__ ) . '/github-updater.php' ) ) {20 21 include_once( plugin_dir_path( __FILE__ ) . '/github-updater.php' );22 23 if ( class_exists( 'WP_GitHub_Updater' ) ) {24 25 new WP_GitHub_Updater( array(26 'slug' => plugin_basename(__FILE__),27 'proper_folder_name' => 'wp-talkus',28 'api_url' => 'https://api.github.com/repos/peernohell/wp-talkus',29 'raw_url' => 'https://raw.github.com/peernohell/wp-talkus/master',30 'github_url' => 'https://github.com/peernohell/wp-talkus',31 'zip_url' => 'https://github.com/peernohell/wp-talkus/archive/master.zip',32 'sslverify' => true,33 'requires' => '4.2',34 'tested' => '4.2.2',35 'readme' => 'version.md', // where the current version is stored. must be updated when a new release is tagged36 'access_token' => '',37 ) );38 39 } else {40 41 error_log( 'TALKUS ERROR: The "WP_GitHub_Updater" class could not be loaded. Auto updates are not working...' );42 43 }44 45 } else {46 47 error_log( 'TAlKUS ERROR: The "github-updater.php" file could not be loaded. Auto updates are not working...' );48 49 }50 51 }52 53 54 16 55 17 class Talkus {
Note: See TracChangeset
for help on using the changeset viewer.