Changeset 2124946
- Timestamp:
- 07/18/2019 01:19:44 AM (7 years ago)
- Location:
- drift/trunk
- Files:
-
- 6 deleted
- 5 edited
-
README.md (modified) (1 diff)
-
admin (deleted)
-
drift.php (modified) (1 diff)
-
includes/class-drift-loader.php (deleted)
-
includes/class-drift-main.php (deleted)
-
includes/embed.php (modified) (2 diffs)
-
languages (deleted)
-
public (deleted)
-
readme.txt (modified) (3 diffs)
-
screenshot-3.png (modified) (previous)
-
uninstall.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
drift/trunk/README.md
r2122240 r2124946 3 3 # Installation 4 4 5 1. Create and configure an account at [Drift](http s://www.drift.com/).6 2. Add this plugin to WordPress and enable it. See [Managing Plugins](https://codex.wordpress.org/Managing_Plugins) .7 3. Visit https://app.drift.com/ settings/widget and copy the code chunk.5 1. Create and configure an account at [Drift](http://www.drift.com). 6 2. Add this plugin to WordPress and enable it. See [Managing Plugins](https://codex.wordpress.org/Managing_Plugins) 7 3. Visit https://app.drift.com/customize and copy the code chunk 8 8 4. Visit Drift Settings on your WordPress site and paste the code chunk into the textarea. Submit the settings form. 9 9 -
drift/trunk/drift.php
r2124152 r2124946 1 1 <?php 2 2 /* 3 Plugin Name: Drift 4 Plugin URI: https://wordpress.org/plugins/drift/ 5 Description: Adds 100% free live chat & targeted messages to your website. Designed for internet businesses like yours to increase sales, conversions and better support your customers. 6 Version: 2.0.1 7 Author: Drift 8 Author URI: https://www.drift.com/?ref=wordpress 9 License: GPLv3 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 Text Domain: drift 12 Domain Path: /languages 3 * Plugin Name: Drift 4 * Version: 3.0.0 5 * Description: Adds 100% free live chat & targeted messages to your website. Designed for internet businesses like yours to increase sales, conversions and better support your customers. 6 * Author: Drift 7 * Author URI: https://www.drift.com/?ref=wordpress 8 * Plugin URI: https://www.drift.com/?ref=wordpress 9 */ 13 10 14 Drift is free software: you can redistribute it and/or modify 15 it under the terms of the GNU General Public License as published by 16 the Free Software Foundation, either version 2 of the License, or 17 any later version. 11 // Prevent Direct Access 12 defined('ABSPATH') or die("Restricted access!"); 18 13 19 Drift is distributed in the hope that it will be useful, 20 but WITHOUT ANY WARRANTY; without even the implied warranty of 21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 22 GNU General Public License for more details. 14 /* 15 * Define 16 */ 17 define('DRIFT_4f050d29b8BB9_VERSION', '3.0.0'); 18 define('DRIFT_4f050d29b8BB9_DIR', plugin_dir_path(__FILE__)); 19 define('DRIFT_4f050d29b8BB9_URL', plugin_dir_url(__FILE__)); 20 defined('DRIFT_4f050d29b8BB9_PATH') or define('DRIFT_4f050d29b8BB9_PATH', untrailingslashit(plugins_url('', __FILE__))); 23 21 24 You should have received a copy of the GNU General Public License 25 along with Drift. If not, see https://www.gnu.org/licenses/gpl-3.0.html. 26 */ 22 require_once(DRIFT_4f050d29b8BB9_DIR . 'includes/core.php'); 23 require_once(DRIFT_4f050d29b8BB9_DIR . 'includes/menus.php'); 24 require_once(DRIFT_4f050d29b8BB9_DIR . 'includes/admin.php'); 25 require_once(DRIFT_4f050d29b8BB9_DIR . 'includes/embed.php'); 27 26 28 defined( 'ABSPATH' ) || exit;29 27 30 require_once( 'includes/class-drift-main.php' ); 31 $drift = new Drift_Main(); 32 register_activation_hook( __FILE__, array( $drift, 'release_updates' ) ); 33 $drift->run(); 28 ?> -
drift/trunk/includes/embed.php
r1902987 r2124946 52 52 { 53 53 $drift_tag = $options['drift_widget_code']; 54 54 55 55 // Insert tracker code 56 56 if ( '' != $drift_tag ) … … 64 64 get_drift_identify(); 65 65 } 66 67 66 } 68 67 } -
drift/trunk/readme.txt
r2124152 r2124946 1 Skip to content 2 3 Search or jump to… 4 5 Pull requests 6 Issues 7 Marketplace 8 Explore 9 10 @MisterSquishy 11 32 12 4 5 Driftt/drift-wordpress 13 Code Issues 5 Pull requests 1 Projects 0 Wiki Security Insights Settings 14 drift-wordpress/readme.txt 15 @RollForReflex RollForReflex more 16 8816c52 yesterday 17 @dcancel @vladutilie @MisterSquishy @RollForReflex @MattBilotti 18 202 lines (131 sloc) 7.79 KB 19 1 20 === Drift === 2 21 … … 125 144 == Changelog == 126 145 146 = 3.0.0 = 147 *Release date: July 17th, 2019* 148 * BUGFIX: Rollback identification bugs introduced in 2.0.0 149 127 150 = 2.0.1 = 128 151 *Release date: July 16th, 2019* … … 199 222 * Feature: Add the Drift live chat widget to your site! 200 223 * Feature: Customize look and feel of the widget, including themes and color! 201 * Feature: Use Word Press user information to populate visitor data in the plugin.224 * Feature: Use Wordpress user information to populate visitor data in the plugin.
Note: See TracChangeset
for help on using the changeset viewer.