Changeset 1020546
- Timestamp:
- 11/05/2014 10:12:05 PM (11 years ago)
- Location:
- elevio/trunk
- Files:
-
- 3 edited
-
elevio.php (modified) (1 diff)
-
plugin_files/helpers/TrackingCodeHelper.class.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
elevio/trunk/elevio.php
r1011918 r1020546 2 2 /* 3 3 Plugin Name: Elevio 4 Plugin URI: https://elev io.com/integrations/wordpress/5 Description: Display your whole knowledge base and chat in a single tab on every page of your site.4 Plugin URI: https://elev.io/ 5 Description: A better way for your users to access the help they need. 6 6 Author: Elevio 7 7 Author URI: https://elev.io 8 Version: 3. 0.28 Version: 3.1.0 9 9 */ 10 10 -
elevio/trunk/plugin_files/helpers/TrackingCodeHelper.class.php
r1011916 r1020546 14 14 if (is_user_logged_in()) { 15 15 $user_info = wp_get_current_user(); 16 $roles = []; 17 if ($user_info instanceof WP_User) { 18 $roles = $user->roles; 19 } 16 20 $user = " 21 17 22 _elev.user = { 18 23 first_name: '" . $user_info->user_firstname . "', 19 24 last_name: '" . $user_info->user_lastname . "', 20 25 email: '" . $user_info->user_email . "', 21 user_hash: '" . hash_hmac("sha256", $user->email, $secret_id) . "' 26 user_hash: '" . hash_hmac("sha256", $user->email, $secret_id) . "', 27 groups: '".implode(',', $roles)."' 22 28 }; 23 29 "; -
elevio/trunk/readme.txt
r1011904 r1020546 1 1 === Elevio === 2 2 Contributors: Elevio 3 Tags: zendesk, desk.com, uservoice, zopim, olark, snapengage, livechat, knowledge base, live chat, support 4 Stable tag: 3. 0.03 Tags: zendesk, desk.com, uservoice, zopim, olark, snapengage, livechat, knowledge base, live chat, support, intercom, statuspage 4 Stable tag: 3.1.0 5 5 Requires at least: 2.8 6 6 Tested up to: 4.0.0 7 7 8 Elevio for Wordpress plugin that integrates with your knowledge base and chat client.8 Elevio for Wordpress plugin that integrates with your existing knowledge base, chat client, support system and more 9 9 10 10 == Description == … … 32 32 1. Install the elevio plugin 33 33 2. Activate the plugin through the 'Plugins' menu in WordPress 34 3. Click the 'Elevio' menu on the left.35 4. Follow the installation instructions instructions.34 3. Click the 'Elevio' menu item on the left. 35 4. Follow the installation instructions. 36 36 37 37 == Screenshots == … … 46 46 == Changelog == 47 47 48 = 3.1.0 = 49 * Added in user role 50 48 51 = 3.0.0 = 49 52 * Moved to using the new 3.0 version of elev.io
Note: See TracChangeset
for help on using the changeset viewer.