Version Description
Download this release
Release Info
Developer | leadin |
Plugin | HubSpot – Free Marketing Plugin for WordPress |
Version | 5.5.0 |
Comparing to | |
See all releases |
Code changes from version 5.4.1 to 5.5.0
- assets/banner-1544x500.png +0 -0
- assets/banner-772x250.png +0 -0
- assets/icon-128x128.png +0 -0
- assets/icon-256x256.png +0 -0
- {admin → trunk/admin}/leadin-admin.php +0 -0
- {images → trunk/images}/leadin-icon-16x16-white.png +0 -0
- {inc → trunk/inc}/class-leadin-pointers.php +0 -0
- {inc → trunk/inc}/class-leadin.php +0 -0
- {inc → trunk/inc}/leadin-constants.php +0 -0
- {inc → trunk/inc}/leadin-disconnect.php +0 -0
- {inc → trunk/inc}/leadin-functions.php +0 -0
- {inc → trunk/inc}/leadin-registration.php +8 -0
- leadin.php → trunk/leadin.php +2 -2
- package.json → trunk/package.json +0 -0
- readme.txt → trunk/readme.txt +6 -3
- screenshot-1.png → trunk/screenshot-1.png +0 -0
- screenshot-2.png → trunk/screenshot-2.png +0 -0
- screenshot-3.png → trunk/screenshot-3.png +0 -0
- screenshot-4.png → trunk/screenshot-4.png +0 -0
- screenshot-5.png → trunk/screenshot-5.png +0 -0
assets/banner-1544x500.png
ADDED
Binary file
|
assets/banner-772x250.png
ADDED
Binary file
|
assets/icon-128x128.png
ADDED
Binary file
|
assets/icon-256x256.png
ADDED
Binary file
|
{admin → trunk/admin}/leadin-admin.php
RENAMED
File without changes
|
{images → trunk/images}/leadin-icon-16x16-white.png
RENAMED
File without changes
|
{inc → trunk/inc}/class-leadin-pointers.php
RENAMED
File without changes
|
{inc → trunk/inc}/class-leadin.php
RENAMED
File without changes
|
{inc → trunk/inc}/leadin-constants.php
RENAMED
File without changes
|
{inc → trunk/inc}/leadin-disconnect.php
RENAMED
File without changes
|
{inc → trunk/inc}/leadin-functions.php
RENAMED
File without changes
|
{inc → trunk/inc}/leadin-registration.php
RENAMED
@@ -6,6 +6,7 @@ if (!defined('LEADIN_PLUGIN_VERSION')) {
|
|
6 |
|
7 |
if (is_admin()) {
|
8 |
add_action('wp_ajax_leadin_registration_ajax', 'leadin_registration_ajax'); // Call when user logged in
|
|
|
9 |
}
|
10 |
|
11 |
function leadin_registration_ajax()
|
@@ -44,4 +45,11 @@ function leadin_registration_ajax()
|
|
44 |
wp_die('{"message": "Success!"}');
|
45 |
}
|
46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
?>
|
6 |
|
7 |
if (is_admin()) {
|
8 |
add_action('wp_ajax_leadin_registration_ajax', 'leadin_registration_ajax'); // Call when user logged in
|
9 |
+
add_action('wp_ajax_leadin_deregistration_ajax', 'leadin_deregistration_ajax');
|
10 |
}
|
11 |
|
12 |
function leadin_registration_ajax()
|
45 |
wp_die('{"message": "Success!"}');
|
46 |
}
|
47 |
|
48 |
+
function leadin_deregistration_ajax() {
|
49 |
+
delete_option('leadin_portalId');
|
50 |
+
delete_option('leadin_hapikey');
|
51 |
+
|
52 |
+
wp_die('{"message": "Success!"}');
|
53 |
+
}
|
54 |
+
|
55 |
?>
|
leadin.php → trunk/leadin.php
RENAMED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Leadin
|
4 |
Plugin URI: http://leadin.hubspot.com
|
5 |
Description: Leadin is an easy-to-use marketing automation and lead tracking plugin for WordPress that helps you better understand your web site visitors.
|
6 |
-
Version: 5.
|
7 |
Author: Leadin
|
8 |
Author URI: http://leadin.hubspot.com
|
9 |
License: GPL2
|
@@ -29,7 +29,7 @@ if (!defined('LEADIN_DB_VERSION'))
|
|
29 |
define('LEADIN_DB_VERSION', '2.2.5');
|
30 |
|
31 |
if (!defined('LEADIN_PLUGIN_VERSION'))
|
32 |
-
define('LEADIN_PLUGIN_VERSION', '5.
|
33 |
|
34 |
if (!defined('LEADIN_SOURCE'))
|
35 |
define('LEADIN_SOURCE', 'leadin.com');
|
3 |
Plugin Name: Leadin
|
4 |
Plugin URI: http://leadin.hubspot.com
|
5 |
Description: Leadin is an easy-to-use marketing automation and lead tracking plugin for WordPress that helps you better understand your web site visitors.
|
6 |
+
Version: 5.5.0
|
7 |
Author: Leadin
|
8 |
Author URI: http://leadin.hubspot.com
|
9 |
License: GPL2
|
29 |
define('LEADIN_DB_VERSION', '2.2.5');
|
30 |
|
31 |
if (!defined('LEADIN_PLUGIN_VERSION'))
|
32 |
+
define('LEADIN_PLUGIN_VERSION', '5.5.0');
|
33 |
|
34 |
if (!defined('LEADIN_SOURCE'))
|
35 |
define('LEADIN_SOURCE', 'leadin.com');
|
package.json → trunk/package.json
RENAMED
File without changes
|
readme.txt → trunk/readme.txt
RENAMED
@@ -3,7 +3,7 @@ Contributors: leadin, sredmond
|
|
3 |
Tags: crm, contacts, lead tracking, click tracking, visitor tracking, analytics, marketing automation, inbound marketing, subscription, marketing, lead generation, mailchimp, constant contact, newsletter, popup, popover, email list, email, contacts database, contact form, forms, form widget, popup form
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.5
|
6 |
-
Stable tag: 5.
|
7 |
|
8 |
Leadin is an easy-to-use contact form and marketing analytics plugin for your website that helps you better understand your website visitors.
|
9 |
|
@@ -67,8 +67,11 @@ Having trouble? Check out our <a href="https://leadin.hubspot.com/knowledge/" ta
|
|
67 |
|
68 |
== Changelog ==
|
69 |
|
70 |
-
- Current version: 5.
|
71 |
-
- Current version release: 2016-08-
|
|
|
|
|
|
|
72 |
|
73 |
= 5.4.1
|
74 |
- Moved all embed loads to the new unified script loader, which has been in beta since v5.2.1
|
3 |
Tags: crm, contacts, lead tracking, click tracking, visitor tracking, analytics, marketing automation, inbound marketing, subscription, marketing, lead generation, mailchimp, constant contact, newsletter, popup, popover, email list, email, contacts database, contact form, forms, form widget, popup form
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.5
|
6 |
+
Stable tag: 5.5.0
|
7 |
|
8 |
Leadin is an easy-to-use contact form and marketing analytics plugin for your website that helps you better understand your website visitors.
|
9 |
|
67 |
|
68 |
== Changelog ==
|
69 |
|
70 |
+
- Current version: 5.5.0
|
71 |
+
- Current version release: 2016-08-30
|
72 |
+
|
73 |
+
= 5.5.0
|
74 |
+
- Added a new endpoint handler to remove hapikey and portalId from the database when removing the account
|
75 |
|
76 |
= 5.4.1
|
77 |
- Moved all embed loads to the new unified script loader, which has been in beta since v5.2.1
|
screenshot-1.png → trunk/screenshot-1.png
RENAMED
File without changes
|
screenshot-2.png → trunk/screenshot-2.png
RENAMED
File without changes
|
screenshot-3.png → trunk/screenshot-3.png
RENAMED
File without changes
|
screenshot-4.png → trunk/screenshot-4.png
RENAMED
File without changes
|
screenshot-5.png → trunk/screenshot-5.png
RENAMED
File without changes
|