HubSpot – Free Marketing Plugin for WordPress - Version 6.1.10

Version Description

(2018.08.28) = - Plugin readme update

Download this release

Release Info

Developer leadin
Plugin Icon 128x128 HubSpot – Free Marketing Plugin for WordPress
Version 6.1.10
Comparing to
See all releases

Code changes from version 6.1.9 to 6.1.10

admin/leadin-admin.php CHANGED
@@ -50,7 +50,21 @@ class WPLeadInAdmin {
50
  add_action( 'admin_menu', array( &$this, 'leadin_add_menu_items' ) );
51
  add_action( 'admin_print_scripts', array( &$this, 'add_leadin_admin_scripts' ) );
52
  add_filter( 'plugin_action_links_' . 'leadin/leadin.php', array( $this, 'leadin_plugin_settings_link' ) );
53
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  }
55
 
56
  function leadin_update_check() {
@@ -123,7 +137,7 @@ class WPLeadInAdmin {
123
  */
124
 
125
  function leadin_build_app() {
126
- global $wp_version;
127
 
128
  echo '<div id="leadin" class="wrap ' . ( $wp_version < 3.8 && ! is_plugin_active( 'mp6/mp6.php' ) ? 'pre-mp6' : '' ) . '"></div>';
129
 
@@ -150,7 +164,7 @@ class WPLeadInAdmin {
150
 
151
  $leadin_config = array(
152
  'portalId' => get_option( 'leadin_portalId' ),
153
- 'hapikey' => get_option( 'leadin_hapikey' ),
154
  'slumberMode' => get_option( 'leadin_slumber_mode' ),
155
  'env' => constant( 'LEADIN_ENV' ),
156
  'user' => $this->leadin_get_user_for_tracking(),
50
  add_action( 'admin_menu', array( &$this, 'leadin_add_menu_items' ) );
51
  add_action( 'admin_print_scripts', array( &$this, 'add_leadin_admin_scripts' ) );
52
  add_filter( 'plugin_action_links_' . 'leadin/leadin.php', array( $this, 'leadin_plugin_settings_link' ) );
53
+
54
+ if ($affiliate = $this->get_affiliate_code()) {
55
+ add_option( 'hubspot_affiliate_code', $affiliate );
56
+ }
57
+ }
58
+
59
+ function get_affiliate_code() {
60
+ $affiliate = get_option( 'hubspot_affiliate_code');
61
+ if (!$affiliate && file_exists(LEADIN_PLUGIN_DIR . '/hs_affiliate.txt' )) {
62
+ $affiliate = trim(preg_replace('/\s\s+/', ' ', file_get_contents(LEADIN_PLUGIN_DIR . '/hs_affiliate.txt')));
63
+ }
64
+ if ($affiliate) {
65
+ return $affiliate;
66
+ }
67
+ return false;
68
  }
69
 
70
  function leadin_update_check() {
137
  */
138
 
139
  function leadin_build_app() {
140
+ global $wp_version;
141
 
142
  echo '<div id="leadin" class="wrap ' . ( $wp_version < 3.8 && ! is_plugin_active( 'mp6/mp6.php' ) ? 'pre-mp6' : '' ) . '"></div>';
143
 
164
 
165
  $leadin_config = array(
166
  'portalId' => get_option( 'leadin_portalId' ),
167
+ 'affiliateCode' => get_option( 'hubspot_affiliate_code' ),
168
  'slumberMode' => get_option( 'leadin_slumber_mode' ),
169
  'env' => constant( 'LEADIN_ENV' ),
170
  'user' => $this->leadin_get_user_for_tracking(),
inc/leadin-functions.php CHANGED
@@ -9,11 +9,6 @@ if ( ! defined( 'LEADIN_PORTAL_ID' ) ) {
9
  DEFINE( 'LEADIN_PORTAL_ID', intval( get_option( 'leadin_portalId' ) ) );
10
  }
11
 
12
- if ( ! defined( 'LEADIN_HAPIKEY' ) ) {
13
- DEFINE( 'LEADIN_HAPIKEY', get_option( 'leadin_hapikey' ) );
14
- }
15
-
16
-
17
  function leadin_get_resource_url( $path ) {
18
  $resource_root = constant( 'LEADIN_ADMIN_ASSETS_BASE_URL' );
19
 
9
  DEFINE( 'LEADIN_PORTAL_ID', intval( get_option( 'leadin_portalId' ) ) );
10
  }
11
 
 
 
 
 
 
12
  function leadin_get_resource_url( $path ) {
13
  $resource_root = constant( 'LEADIN_ADMIN_ASSETS_BASE_URL' );
14
 
inc/leadin-registration.php CHANGED
@@ -10,8 +10,8 @@ if ( is_admin() ) {
10
  }
11
 
12
  function leadin_registration_ajax() {
 
13
  $existingPortalId = get_option( 'leadin_portalId' );
14
- $existingHapikey = get_option( 'leadin_hapikey' );
15
 
16
  if ( ! empty( $existingPortalId ) ) {
17
  header( 'HTTP/1.0 400 Bad Request' );
@@ -21,9 +21,6 @@ function leadin_registration_ajax() {
21
  $data = json_decode( file_get_contents( 'php://input' ), true );
22
 
23
  $newPortalId = $data['portalId'];
24
- $slumberMode = $data['slumberMode'];
25
-
26
- error_log( $data['hapikey'] );
27
 
28
  if ( empty( $newPortalId ) ) {
29
  error_log( 'Registration error' );
@@ -34,10 +31,6 @@ function leadin_registration_ajax() {
34
  add_option( 'leadin_portalId', $newPortalId );
35
  add_option( 'leadin_slumber_mode', '1' );
36
 
37
- if ( ! empty( $existingHapikey ) ) {
38
- delete_option( 'leadin_hapikey' );
39
- }
40
-
41
  wp_die( '{"message": "Success!"}' );
42
  }
43
 
10
  }
11
 
12
  function leadin_registration_ajax() {
13
+ delete_option( 'leadin_hapikey' );
14
  $existingPortalId = get_option( 'leadin_portalId' );
 
15
 
16
  if ( ! empty( $existingPortalId ) ) {
17
  header( 'HTTP/1.0 400 Bad Request' );
21
  $data = json_decode( file_get_contents( 'php://input' ), true );
22
 
23
  $newPortalId = $data['portalId'];
 
 
 
24
 
25
  if ( empty( $newPortalId ) ) {
26
  error_log( 'Registration error' );
31
  add_option( 'leadin_portalId', $newPortalId );
32
  add_option( 'leadin_slumber_mode', '1' );
33
 
 
 
 
 
34
  wp_die( '{"message": "Success!"}' );
35
  }
36
 
leadin.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Form Builder, Live Chat and Lead Generation Tools from HubSpot
4
  Plugin URI: http://www.hubspot.com/products/wordpress/contact-form
5
  Description: Whether you’re just getting started with HubSpot or already a HubSpot power user, Form Builder, Live Chat and Lead Generation Tools from HubSpot will let you connect your WordPress website to your HubSpot account without having to deal with code.
6
- Version: 6.1.9
7
  Author: HubSpot
8
  Author URI: http://www.hubspot.com
9
  License: GPL2
@@ -33,7 +33,7 @@ if ( ! defined( 'LEADIN_DB_VERSION' ) ) {
33
  }
34
 
35
  if ( ! defined( 'LEADIN_PLUGIN_VERSION' ) ) {
36
- define( 'LEADIN_PLUGIN_VERSION', '6.1.9' );
37
  }
38
 
39
  if ( ! defined( 'LEADIN_SOURCE' ) ) {
@@ -125,6 +125,7 @@ function add_leadin_defaults() {
125
  'beta_tester' => 0,
126
  'converted_to_tags' => 1,
127
  'names_added_to_contacts' => 1,
 
128
  );
129
 
130
  // Add the Pro flag if this is a pro installation
3
  Plugin Name: Form Builder, Live Chat and Lead Generation Tools from HubSpot
4
  Plugin URI: http://www.hubspot.com/products/wordpress/contact-form
5
  Description: Whether you’re just getting started with HubSpot or already a HubSpot power user, Form Builder, Live Chat and Lead Generation Tools from HubSpot will let you connect your WordPress website to your HubSpot account without having to deal with code.
6
+ Version: 6.1.10
7
  Author: HubSpot
8
  Author URI: http://www.hubspot.com
9
  License: GPL2
33
  }
34
 
35
  if ( ! defined( 'LEADIN_PLUGIN_VERSION' ) ) {
36
+ define( 'LEADIN_PLUGIN_VERSION', '6.1.10' );
37
  }
38
 
39
  if ( ! defined( 'LEADIN_SOURCE' ) ) {
125
  'beta_tester' => 0,
126
  'converted_to_tags' => 1,
127
  'names_added_to_contacts' => 1,
128
+ 'affiliate_code' => '',
129
  );
130
 
131
  // Add the Pro flag if this is a pro installation
readme.txt CHANGED
@@ -1,146 +1,197 @@
1
- === Form Builder, Live Chat and Lead Generation Tools from HubSpot ===
2
- Contributors: leadin, sredmond, HubSpotDev
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.8
6
- Stable tag: 6.1.9
7
 
8
- The HubSpot WordPress plugin is a powerful FREE contact form and pop-up form plugin. Create WordPress forms in minutes, capture leads and gain insights on your website traffic.
9
 
10
  == Description ==
11
 
12
- Whether you’re just getting started with HubSpot or already a HubSpot power user, **Form Builder, Live Chat and Lead Generation Tools from HubSpot** will let you connect your WordPress website to your HubSpot account without having to deal with code.
13
 
14
- It is the all-in-one WordPress plugin for capturing leads, building an email list and tracking visitor behavior on your website.
15
 
16
  The plugin includes forms and pop-ups to capture leads, a dashboard to show the emails you’ve captured and a contact database with insights on your leads.
17
 
18
- All these features work immediately once you connect your HubSpot account to WordPress. No coding required.
19
 
20
- The **Lead Generation Tools from HubSpot** also automatically capture form submissions on your site even if they come from a different form tool. Whether you use Gravity Forms, Ninja Forms, Contact Forms 7 or any other WordPress form plugin, those leads will automatically be added to your contact database. No need to set up API integrations.
21
 
22
- Here’s how **Form Builder, Live Chat and Lead Generation Tools from HubSpot** will help you upgrade your marketing:
23
 
24
- = Free Form Builder & Pop-ups: Capture every qualified lead =
25
-
26
- Add high-converting forms and pop-ups to your website in minutes. No coding required. You can choose from three type of pop-ups:
27
 
 
28
  - Overlay modal: A pop-up that appears in the center of the screen
29
- - Banner: A small banner at the top of the page
30
  - Slide-in box: A small box that slides in from the side of the page
31
 
32
- If you’re already using forms on your site, then awesome! HubSpot Marketing Free automatically captures form submissions, even if they come from a different tool. It supports the most popular form building plugins available: Ninja Forms, Gravity Forms, Contact Form 7, and more.
33
-
34
- = Contact Insights: Understand who your leads are and what they’re doing =
35
 
36
- When a lead submits a form, the HubSpot plugin automatically enriches their profile with public information from across the web such as job title and social profiles. Their contact profile will also show you how they got to your website and what pages they viewed.
37
 
38
- = Built-in Analytics: Analyze and improve your conversions =
39
 
40
- Using the built-in analytics, you will see which pages and traffic sources drive the most conversions so you can double down on what’s working and see where you can improve. The data is yours. You don’t have to pay for it.
41
 
42
- = Let your site visitors talk to you when they want =
43
 
44
- The paid version of HubSpot allows you to embed a live chat widget on your WordPress site so visitors can chat with you when they want to.
45
 
46
- = Start turning visitors into leads today =
47
 
48
- Get **Form Builder, Live Chat and Lead Generation Tools from HubSpot** and start converting website visitors into leads now.
49
-
50
- > “HubSpot dramatically cuts down the time I spend on marketing. We used to spend tons of time generating very few inbound leads, but those numbers have gone through the roof with minimal effort.” – Brian Ruhlmann, Director of Sales & Marketing, AdmitHub
51
 
52
- = Full Feature List =
53
 
 
54
  - Dashboard: A central hub for your marketing analytics. Learn which forms, pages and traffic sources drive the most conversions.
55
- - Lead Flows: Add user-friendly pop-up forms with ease. No code required.
56
- - Collected Forms: Already using another forms plugin? No need to change them. HubSpot automatically captures submissions, even if they come from a different tool.
57
- - Live Chat: A paid feature that allows you to add a live chat widget to your site.
58
- - Contacts Database: A single simple database for contact management.
59
- - Kickback Emails: Follow up on form submissions with a quick email.
60
  - Integrations: Easily connect to MailChimp, Shopify, Magento and more.
61
 
62
- = What people love about the HubSpot WordPress plugin? =
63
-
64
- - It’s easy to configure and use without code.
65
- - It’s lightweight and integrates with HubSpot CRM and third-party software like MailChimp, Shopify, Magento and more.
66
- - The best WordPress marketing plugin to learn which pages and offers convert best so you know which pages to optimize.
67
- - It saves you time you can use to focus on other marketing activities.
68
- - It’s 100% responsive and mobile-friendly.
 
 
 
 
 
 
 
 
 
 
 
69
 
70
  > “HubSpot educates marketers beyond just the anonymous analytics they get from Google Analytics. Instead, it digs down to individual users.” – Michael Shoup, Founder / CEO, 12South Marketing
71
 
 
 
 
 
 
 
72
  == Support ==
73
 
74
- Having trouble? <a href="https://community.hubspot.com/">Browse our HubSpot Community page</a> for help documentation and support.
75
 
76
  == Installation ==
77
 
78
  = Search =
79
 
80
- The easiest way to install this plugin is to use the WordPress Admin interface. Go to your admin dashboard, find the "Plugins" menu, and click on "Add New". Search for "HubSpot" and click "Install Now". Follow the WordPress instructions and you're done.
 
 
 
 
 
 
 
 
 
 
 
81
 
82
  = Upload =
83
 
84
  1. Upload the 'leadin' folder to the '/wp-content/plugins/' directory
85
  2. Activate the plugin through the 'Plugins' menu in WordPress
86
 
87
- Having trouble? Check out our <a href="https://knowledge.hubspot.com/articles/kcs_article/integrations/how-can-i-install-the-hubspot-tracking-code-for-wordpress" target="_blank">help documentation</a>
88
 
89
  == Frequently Asked Questions ==
90
 
91
  = Requirements =
92
 
93
  - Your website or blog must be using WordPress.org version 3.7 or higher on your server. We recommend the latest version.
94
- - The tracking code cannot be installed on WordPress.com sites, as they do not allow you to add plugins or Javascript.
95
  - The wp_footer function must be included in your WordPress theme’s footer file (footer.php).
96
- - This function is required for our tracking code to be installed on every page of your site.
97
  - You must be a WordPress admin to be able to install plugins for your site. If you are not the admin, you can forward these instructions to the person who manages your WordPress install.
98
 
99
  = What does the plugin do? =
100
 
101
- This plugin installs the HubSpot tracking code on your WordPress site. HubSpot provides an arsenal of marketing and sales tools you can use to convert visitors into leads.
102
 
103
  = What is HubSpot? =
104
 
105
- HubSpot provides inbound marketing, sales and CRM software that helps companies attract visitors, convert leads, and close customers.
106
 
107
- The HubSpot WordPress Plugin is a free tool that includes the basics you need to capture, track, and convert leads. These basics include a lead generation dashboard, pop-up and slide-in forms, a form scraping tool, a contact database, and lead insights.
108
 
109
- This plugin connects your free or paid HubSpot account with your WordPress website.
110
-
111
- = Who should use the HubSpot WordPress plugin? =
112
-
113
- HubSpot is perfect for business owners, small businesses, bloggers, designers, photographers, anyone with a WordPress website. If you want to create custom WordPress forms, this plugin is for you whether you’re a current HubSpot user (free or paid tiers) or hoping to try out the free tools.
114
 
115
  = Do I need to have coding skills to use the HubSpot WordPress plugin? =
116
 
117
- Not at all. You can create and manage forms without any coding by using our user-friendly drag and drop form builder.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
 
119
  = How do I upgrade? =
120
 
121
- The HubSpot Starter tier is built for those who want to remove HubSpot branding from their forms and get more lead insights. If you’d like to upgrade to the HubSpot Starter tier, <a href="https://knowledge.hubspot.com/articles/kcs_article/account/how-do-i-upgrade-to-marketing-starter-from-marketing-free" target="_blank">follow these instructions</a>.
122
 
123
- = Why aren’t my pop-ups (i.e. lead flows) working? =
124
 
125
- There are 3 main reasons your lead flows may not be working:
126
 
127
- 1. Your tracking code is not installed properly. Please see the instructions above, or <a href="https://knowledge.hubspot.com/articles/kcs_article/lead-flows/why-arent-my-lead-flows-displaying" target="_blank">this article for troubleshooting</a>.
128
  2. You previously cancelled, or pressed “x,” on your pop-up. Once you dismiss the pop-up we will not show it for 14-days.
129
  3. You, or your contact, already filled out the pop-up form. Once a pop-up form is submitted, it will not display again for the same user.
130
 
131
- = What will my visitors see if I have multiple lead flows active on a page? =
132
 
133
- **If a visitor has previously dismissed a pop-up form:** They won’t be presented with that same pop-up form for 14 days. If they previously submitted that pop-up and view a page with the same pop-up on the same browser without clearing their cookies, they will not be shown the same pop-up form again.
 
134
 
135
- **If more than one pop-up is set to a single URL:** The pop-up form set to the most specific page URL will take priority. For example, if you have a pop-up set to load on “All Pages” and a pop-up is set to load on “http://www.domain.com/home”, the pop-up form set to load on “http://www.domain.com/home” will display. This applies to pop-ups that have the same triggers (On 50% page scroll, On exit intent, etc) or the same type (pop-up box, dropdown banner, etc).
 
136
 
137
- **If there are two pop-ups with different triggers set to load on the same page with the same location specificity:** The pop-up form won’t conflict each other and will wait for their respective triggers, given that the user has not previously submitted or dismissed either pop-up form. For example, if a pop-up form is set to load on all pages and is triggered on 50% page scroll and another pop-up is set to load on all pages and is triggered on exit intent, the two pop-ups will load when the user triggers each pop-up.
 
138
 
139
- <a href="https://knowledge.hubspot.com/getting-started-with-the-hubspot-crm-free/lead-flows-and-collected-forms-faq" target="_blank">Check out this help article</a> for more details.
140
 
141
  = My question is not listed. =
142
 
143
- Please <a href="https://community.hubspot.com/" target="_blank">visit the HubSpot Community</a> for more detailed documentation and support. Thank you!
144
 
145
  == Screenshots ==
146
 
@@ -150,20 +201,23 @@ Please <a href="https://community.hubspot.com/" target="_blank">visit the HubSpo
150
 
151
  == Changelog ==
152
 
153
- - Current version: 6.1.9
154
- - Current version release: 2018-07-27
 
 
 
155
 
156
  = 6.1.9 (2018.07.27) =
157
- - Update screenshots on description
158
 
159
  = 6.1.8 (2018.07.27) =
160
- - Update plugin description II
161
 
162
  = 6.1.7 (2018.06.26) =
163
- - Update plugin description
164
 
165
  = 6.1.6 (2018.06.22) =
166
- - Add shortcodes to use forms and ctas tools
167
 
168
  = 6.1.5 (2018.05.22) =
169
  - Code cleanup
@@ -179,7 +233,7 @@ Please <a href="https://community.hubspot.com/" target="_blank">visit the HubSpo
179
  - Fix an issue where accounts could not be disconnected
180
 
181
  = 6.0.0 (2016.11.10) =
182
- - Leadin is now HubSpot Marketing Free - learn more at http://www.hubspot.com/products/marketing/free
183
 
184
  = 5.5.3 (2016.09.01) =
185
  - Clean up remaining deployment issues
1
+ === Contact Form Builder for WordPress - Conversion Tools by HubSpot ===
2
+ Contributors: HubSpotDev, leadin
3
+ Tags: form, forms, form builder, contact form, email
4
  Requires at least: 3.7
5
+ Tested up to: 4.9
6
+ Stable tag: 6.1.10
7
 
8
+ The Contact Form Builder plugin, a part of HubSpot's Conversion Tools, allows you to create WordPress forms using <a href="https://hubspot.com/products/marketing/forms?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">HubSpot's drag & drop Form Builder</a> in a few clicks to start capturing leads on your website.
9
 
10
  == Description ==
11
 
12
+ Whether you’re just getting started with HubSpot or already a HubSpot power user, **Contact Form Builder for WordPress and Conversion Tools by HubSpot** will let you use HubSpot tools on your WordPress website and connect the two platforms without dealing with code.
13
 
14
+ A free HubSpot account will allow you to take advantage of all the plugin features. <a href=“https://app.hubspot.com/signup/marketing?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces” target=“_blank”>Click here to create your account</a>.
15
 
16
  The plugin includes forms and pop-ups to capture leads, a dashboard to show the emails you’ve captured and a contact database with insights on your leads.
17
 
18
+ All these features work immediately once you connect your WordPress site with your HubSpot account.
19
 
20
+ Let's take a look at how HubSpot's Contact Form Builder for WordPress can help you get more leads and email subscribers.
21
 
22
+ = Drag and Drop Form Builder =
23
 
24
+ Add contact forms and email capture pop-ups to your website in minutes using the drag and drop form builder. You can choose from three type of forms:
 
 
25
 
26
+ - Inline form: A form you can embed directly on your site pages
27
  - Overlay modal: A pop-up that appears in the center of the screen
28
+ - Banner: An banner at the top of the page
29
  - Slide-in box: A small box that slides in from the side of the page
30
 
31
+ = Fully Integrated Customer Relationship Management =
 
 
32
 
33
+ Your HubSpot account comes with a <a href="https://www.hubspot.com/products/crm?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">free HubSpot CRM</a>. When someone fills out your form, their data is sent directly to your HubSpot CRM so you can easily organize and segment your contacts into lists.
34
 
35
+ The plugin automatically enriches your contact profiles with public information from across the web. You can view each contact in your HubSpot CRM to find out how they found your website and which pages they viewed.
36
 
37
+ If you’re already using a form tool on your site like Ninja Forms, Gravity Forms, or Contact Form 7, no problem. HubSpot's Conversion Tools will automatically capture those form submissions and add them to your CRM so you can keep all your contacts in one place.
38
 
39
+ = Analyze and Improve Your Conversions =
40
 
41
+ Using the built-in analytics, you will see which pages and traffic sources drive the most conversions so you can double down on what’s working and see where you can improve.
42
 
43
+ = Let Your Site Visitors Talk to You When They Want =
44
 
45
+ As a part of HubSpot's Conversion Tools, the plugin also allows you to embed a <a href="https://www.hubspot.com/products/crm/live-chat?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">live chat</a> widget on your WordPress site so visitors can chat with you when they want to.
 
 
46
 
47
+ = Full Plugin Feature List =
48
 
49
+ - <a href="https://www.hubspot.com/products/marketing/forms?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">Drag and Drop Form Builder</a>: Easily create contact forms in minutes.
50
  - Dashboard: A central hub for your marketing analytics. Learn which forms, pages and traffic sources drive the most conversions.
51
+ - <a href="https://www.hubspot.com/products/marketing/lead-flows?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">Pop-Ups</a>: Add user-friendly pop-up forms with ease. No code required.
52
+ - Collected Forms: Already using another forms plugin? No need to change them. The plugin automatically captures submissions and syncs them with your HubSpot CRM.
53
+ - <a href="https://www.hubspot.com/products/crm/live-chat?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">Live Chat</a>: Add a live chat widget to your site so visitors can chat with you.
54
+ - <a href="https://www.hubspot.com/products/crm?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">Contacts Database</a>: A single simple database for contact management.
 
55
  - Integrations: Easily connect to MailChimp, Shopify, Magento and more.
56
 
57
+ **Features of HubSpot Form Builder include, but are not limited to:**
58
+
59
+ - Unlimited fields: Use as many fields as you'd like on a form
60
+ - Unlimited submissions: Don't worry about hitting submission limits.
61
+ - Dropdown select menus: Give users a dropdown menu of options.
62
+ - Radio select: List out all options available.
63
+ - Multiple checkboxes: Users can select multiple options.
64
+ - Required fields: Make fields required so users can't skip them.
65
+ - File uploads: Collect files through your contact forms.
66
+ - Spam protection: Smart CAPTCHA will stop spam contact form submissions.
67
+ - Smart conditional logic: Show or hide fields and contact form sections based on user behavior.
68
+ - Form submission notification emails: Set up a notification email with a summary whenever someone submits your form.
69
+ - Form submission follow up emails: Send a follow up email when someone submits your form.
70
+ - Custom success behavior: Give users a success message or redirect them elsewhere after they complete a form.
71
+ - Mobile-responsive contact forms: Your forms will work on any screen size.
72
+ - <a href="https://www.hubspot.com/integrations/mailchimp?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">MailChimp Forms</a>: Create MailChimp newsletter signup forms in WordPress and connect your contact form to grow your email list.
73
+
74
+ = What do people have to say about HubSpot Form Builder for WordPress? =
75
 
76
  > “HubSpot educates marketers beyond just the anonymous analytics they get from Google Analytics. Instead, it digs down to individual users.” – Michael Shoup, Founder / CEO, 12South Marketing
77
 
78
+ > “HubSpot dramatically cuts down the time I spend on marketing. We used to spend tons of time generating very few inbound leads, but those numbers have gone through the roof with minimal effort.” – Brian Ruhlmann, Director of Sales & Marketing, AdmitHub
79
+
80
+ Give HubSpot Form Builder a try.
81
+
82
+ Want to learn about more features? <a href="https://hubspot.com/pricing?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">See if HubSpot's paid tiers are for you</a>.
83
+
84
  == Support ==
85
 
86
+ Having trouble with the form builder? <a href="https://community.hubspot.com?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">Browse our HubSpot Community page</a> for help documentation and support.
87
 
88
  == Installation ==
89
 
90
  = Search =
91
 
92
+ The easiest way to install this plugin is to use the WordPress Admin interface.
93
+
94
+ - Go to your admin dashboard
95
+ - Find the "Plugins" menu
96
+ - Click on "Add New"
97
+ - Search for "HubSpot"
98
+ - Click "Install Now"
99
+ - Go to your "Plugins" menu
100
+ - Click "Activate" on the HubSpot Form Builder plugin
101
+ - Log in or sign up for a HubSpot account
102
+
103
+ Your WordPress site and HubSpot account will be connected and you're ready to get started with HubSpot's Conversion Tools.
104
 
105
  = Upload =
106
 
107
  1. Upload the 'leadin' folder to the '/wp-content/plugins/' directory
108
  2. Activate the plugin through the 'Plugins' menu in WordPress
109
 
110
+ Having trouble? Check out our <a href="https://knowledge.hubspot.com/articles/kcs_article/integrations/how-can-i-install-the-hubspot-tracking-code-for-wordpress?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">help documentation</a>
111
 
112
  == Frequently Asked Questions ==
113
 
114
  = Requirements =
115
 
116
  - Your website or blog must be using WordPress.org version 3.7 or higher on your server. We recommend the latest version.
117
+ - The plugin cannot be installed on WordPress.com sites, as they do not allow you to add plugins or Javascript.
118
  - The wp_footer function must be included in your WordPress theme’s footer file (footer.php).
119
+ - This function is required for our Javascript snippet to be installed on every page of your site.
120
  - You must be a WordPress admin to be able to install plugins for your site. If you are not the admin, you can forward these instructions to the person who manages your WordPress install.
121
 
122
  = What does the plugin do? =
123
 
124
+ This plugin connects your free or paid HubSpot account with your WordPress website by installing the HubSpot Javascript snippet on your WordPress site. This code will allow you to use HubSpot's suite of conversion tools on your WordPress site.
125
 
126
  = What is HubSpot? =
127
 
128
+ <a href="https://hubspot.com?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">HubSpot</a>a> provides inbound marketing, sales, customer service and CRM software to help companies grow better.
129
 
130
+ = Who should use the HubSpot Conversion Tools for WordPess? =
131
 
132
+ HubSpot is perfect for agencies, business owners, small businesses, bloggers, designers, anyone with a WordPress website. If you want to create custom WordPress contact forms, this plugin is for you.
 
 
 
 
133
 
134
  = Do I need to have coding skills to use the HubSpot WordPress plugin? =
135
 
136
+ Not at all. You can create and manage forms without any coding using our user-friendly drag and drop form builder.
137
+
138
+ = What type of WordPress forms can I build with HubSpot Form Builder? =
139
+
140
+ Here are some types of WordPress forms you can create:
141
+
142
+ * Simple Contact Forms
143
+ * Advanced Contact Forms
144
+ * Custom Contact Forms
145
+ * Dynamic Contact Forms (where fields change based on user's answers)
146
+ * Request a Quote Contact Form
147
+ * Job Application Contact Form
148
+ * Feedback Survey Contact Form
149
+ * Make a Suggestion Contact Form
150
+ * Testimonials Contact Form
151
+ * Change Request Forms
152
+ * Online Booking Forms
153
+ * Online RSVP Forms
154
+ * WordPress Post Submission Forms (Great for Guest Posts)
155
+ * Lead Capture Forms
156
+ * Newsletter Signup Forms
157
+ * MailChimp forms
158
+ * AWeber Forms
159
+ * Constant Contact Forms
160
+ * GetResponse Signup Forms
161
+ * Campaign Monitor Forms
162
+ * Partnership Agreement Forms
163
+ * File Download Forms
164
+ * Make a Referral Contact Form
165
+ * Volunteer Registration Contact Form
166
 
167
  = How do I upgrade? =
168
 
169
+ The HubSpot's paid tiers are built for those who want more advanced functionality. If you’d like to learn more about HubSpot's paid tiers, <a href="https://hubspot.com/pricing?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">view our pricing page</a>.
170
 
171
+ = Why aren’t my pop-ups working? =
172
 
173
+ There are three reasons your pop-up forms may not be working:
174
 
175
+ 1. Your tracking code is not installed properly. Please see the instructions above, or <a href="https://knowledge.hubspot.com/articles/kcs_article/lead-flows/why-arent-my-lead-flows-displaying?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">this article for troubleshooting</a>.
176
  2. You previously cancelled, or pressed “x,” on your pop-up. Once you dismiss the pop-up we will not show it for 14-days.
177
  3. You, or your contact, already filled out the pop-up form. Once a pop-up form is submitted, it will not display again for the same user.
178
 
179
+ = What will my visitors see if I have multiple pop-up forms active on a page? =
180
 
181
+ **If a visitor has previously dismissed a pop-up form:**
182
+ They won’t be presented with that same pop-up form for 14 days. If they previously submitted that pop-up and view a page with the same pop-up on the same browser without clearing their cookies, they will not be shown the same pop-up form again.
183
 
184
+ **If more than one pop-up is set to a single URL:**
185
+ The pop-up form set to the most specific page URL will take priority. For example, if you have a pop-up set to load on “All Pages” and a pop-up is set to load on “http://www.domain.com/home”, the pop-up form set to load on “http://www.domain.com/home” will display. This applies to pop-ups that have the same triggers (On 50% page scroll, On exit intent, etc) or the same type (pop-up box, dropdown banner, etc).
186
 
187
+ **If there are two pop-ups with different triggers set to load on the same page with the same location specificity:**
188
+ The pop-up form won’t conflict each other and will wait for their respective triggers, given that the user has not previously submitted or dismissed either pop-up form. For example, if a pop-up form is set to load on all pages and is triggered on 50% page scroll and another pop-up is set to load on all pages and is triggered on exit intent, the two pop-ups will load when the user triggers each pop-up.
189
 
190
+ <a href="https://knowledge.hubspot.com/getting-started-with-the-hubspot-crm-free/lead-flows-and-collected-forms-faq?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">Check out this help article</a> for more details.
191
 
192
  = My question is not listed. =
193
 
194
+ Please <a href="https://community.hubspot.com?utm_source=wordpress-plugin-listing&utm_campaign=wordpress&utm_medium=marketplaces" target="_blank">visit the HubSpot Community</a> for more detailed documentation and support. Thank you!
195
 
196
  == Screenshots ==
197
 
201
 
202
  == Changelog ==
203
 
204
+ - Current version: 6.1.10
205
+ - Current version release: 2018-08-28
206
+
207
+ = 6.1.10 (2018.08.28) =
208
+ - Plugin readme update
209
 
210
  = 6.1.9 (2018.07.27) =
211
+ - New product screenshots with HubSpot Form Builder redesign
212
 
213
  = 6.1.8 (2018.07.27) =
214
+ - Plugin description updated to describe HubSpot Conversion Tools
215
 
216
  = 6.1.7 (2018.06.26) =
217
+ - Plugin description updated to describe HubSpot Form Builder
218
 
219
  = 6.1.6 (2018.06.22) =
220
+ - Add shortcodes to use forms and CTA tools
221
 
222
  = 6.1.5 (2018.05.22) =
223
  - Code cleanup
233
  - Fix an issue where accounts could not be disconnected
234
 
235
  = 6.0.0 (2016.11.10) =
236
+ - Leadin is now HubSpot Marketing Free - learn more at http://www.hubspot.com/products/marketing
237
 
238
  = 5.5.3 (2016.09.01) =
239
  - Clean up remaining deployment issues