Plugin Directory

Changeset 2124946


Ignore:
Timestamp:
07/18/2019 01:19:44 AM (7 years ago)
Author:
driftcom
Message:

Version 3.0.0

Location:
drift/trunk
Files:
6 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • drift/trunk/README.md

    r2122240 r2124946  
    33# Installation
    44
    5 1. Create and configure an account at [Drift](https://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.
     51. Create and configure an account at [Drift](http://www.drift.com).
     62. Add this plugin to WordPress and enable it. See [Managing Plugins](https://codex.wordpress.org/Managing_Plugins)
     73. Visit https://app.drift.com/customize and copy the code chunk
    884. Visit Drift Settings on your WordPress site and paste the code chunk into the textarea. Submit the settings form.
    99
  • drift/trunk/drift.php

    r2124152 r2124946  
    11<?php
    22/*
    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 */
    1310
    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
     12defined('ABSPATH') or die("Restricted access!");
    1813
    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*/
     17define('DRIFT_4f050d29b8BB9_VERSION', '3.0.0');
     18define('DRIFT_4f050d29b8BB9_DIR', plugin_dir_path(__FILE__));
     19define('DRIFT_4f050d29b8BB9_URL', plugin_dir_url(__FILE__));
     20defined('DRIFT_4f050d29b8BB9_PATH') or define('DRIFT_4f050d29b8BB9_PATH', untrailingslashit(plugins_url('', __FILE__)));
    2321
    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 */
     22require_once(DRIFT_4f050d29b8BB9_DIR . 'includes/core.php');
     23require_once(DRIFT_4f050d29b8BB9_DIR . 'includes/menus.php');
     24require_once(DRIFT_4f050d29b8BB9_DIR . 'includes/admin.php');
     25require_once(DRIFT_4f050d29b8BB9_DIR . 'includes/embed.php');
    2726
    28 defined( 'ABSPATH' ) || exit;
    2927
    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  
    5252  {
    5353    $drift_tag = $options['drift_widget_code'];
    54    
     54
    5555    // Insert tracker code
    5656    if ( '' != $drift_tag )
     
    6464        get_drift_identify();
    6565      }
    66 
    6766    }
    6867  }
  • drift/trunk/readme.txt

    r2124152 r2124946  
     1Skip to content
     2
     3Search or jump to…
     4
     5Pull requests
     6Issues
     7Marketplace
     8Explore
     9
     10@MisterSquishy
     1132
     124 5 Driftt/drift-wordpress
     13 Code  Issues 5  Pull requests 1  Projects 0  Wiki  Security  Insights  Settings
     14drift-wordpress/readme.txt
     15@RollForReflex RollForReflex more
     168816c52 yesterday
     17@dcancel @vladutilie @MisterSquishy @RollForReflex @MattBilotti
     18202 lines (131 sloc)  7.79 KB
     19
    120=== Drift ===
    221
     
    125144== Changelog ==
    126145
     146= 3.0.0 =
     147*Release date: July 17th, 2019*
     148* BUGFIX: Rollback identification bugs introduced in 2.0.0
     149
    127150= 2.0.1 =
    128151*Release date: July 16th, 2019*
     
    199222* Feature: Add the Drift live chat widget to your site!
    200223* Feature: Customize look and feel of the widget, including themes and color!
    201 * Feature: Use WordPress 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.