Optin Forms - Version 1.2.9.4

Version Description

( May 29th, 2019 ) = * Fix for MailerLite forms when name field is disabled

Download this release

Release Info

Developer wpkube
Plugin Icon 128x128 Optin Forms
Version 1.2.9.4
Comparing to
See all releases

Code changes from version 1.2.9.3 to 1.2.9.4

Files changed (3) hide show
  1. js/placeholder.js +6 -0
  2. optin-forms.php +3 -3
  3. readme.txt +4 -1
js/placeholder.js CHANGED
@@ -116,6 +116,12 @@ jQuery(document).ready(function($){
116
  }
117
  })
118
 
 
 
 
 
 
 
119
  $(document).on( 'keyup change', 'input[name="OF_NAME"]', function(){
120
 
121
  var fullName = '',
116
  }
117
  })
118
 
119
+ $('input[name="fields[name]"][id*="optinforms"]').each(function(){
120
+ if ( ! $(this).is(':visible') ) {
121
+ $(this).prop( 'required', false );
122
+ }
123
+ })
124
+
125
  $(document).on( 'keyup change', 'input[name="OF_NAME"]', function(){
126
 
127
  var fullName = '',
optin-forms.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Optin Forms
4
  Plugin URI: http://fancythemes.com/plugins/optin-forms/
5
  Description: Create beautiful optin forms with ease. Choose a form design, customize it, and add your form to your blog with a simple mouse-click.
6
  Author: FancyThemes
7
- Version: 1.2.9.3
8
  Author URI: http://www.fancythemes.com
9
  Text Domain: optin-forms
10
  Domain Path: /languages/
@@ -116,8 +116,8 @@ class Optin_Forms {
116
  */
117
  public function optinforms_scripts() {
118
  wp_enqueue_script('jquery');
119
- wp_enqueue_style('optinforms-stylesheet', plugins_url('/css/optinforms.css', __FILE__ ), array(), '1.2.9.3' );
120
- wp_enqueue_script('placeholder', plugins_url('/js/placeholder.js', __FILE__ ), array(), '1.2.9.3');
121
  if ( optinforms_used_fonts() !== '//fonts.googleapis.com/css?family=' ) {
122
  wp_enqueue_style('optinforms-googleFont', optinforms_used_fonts());
123
  }
4
  Plugin URI: http://fancythemes.com/plugins/optin-forms/
5
  Description: Create beautiful optin forms with ease. Choose a form design, customize it, and add your form to your blog with a simple mouse-click.
6
  Author: FancyThemes
7
+ Version: 1.2.9.4
8
  Author URI: http://www.fancythemes.com
9
  Text Domain: optin-forms
10
  Domain Path: /languages/
116
  */
117
  public function optinforms_scripts() {
118
  wp_enqueue_script('jquery');
119
+ wp_enqueue_style('optinforms-stylesheet', plugins_url('/css/optinforms.css', __FILE__ ), array(), '1.2.9.4' );
120
+ wp_enqueue_script('placeholder', plugins_url('/js/placeholder.js', __FILE__ ), array(), '1.2.9.4');
121
  if ( optinforms_used_fonts() !== '//fonts.googleapis.com/css?family=' ) {
122
  wp_enqueue_style('optinforms-googleFont', optinforms_used_fonts());
123
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: wpkube, FancyThemes
3
  Tags: optin, form, forms, aweber, email subscriber, icontact, mailchimp, getresponse, mad mimi, newsletter, mailchimp forms, mailchimp integrations, mailchimp plugin, getresponse forms, subscribe, aweber forms, after post optin form, after post optin form plugin, lead generation, mobile optin forms, mobile optins, sidebar form, sidebar optin form, wordpress after post optin form, wordpress lead generation, wordpress popups, optin locker, social locker, enter email to download, interspire, email marketer, email marketing, email, e-mail, list, list building, opt-in, newsletter, email list, autoresponder, popup, pop-up, mailing, mailing list, mail, webform, newsletter plugin, optin plugin, opt-in plugin, conversion, design, convertkit, convert, kit
4
  Requires at least: 3.2
5
  Tested up to: 5.2
6
- Stable tag: 1.2.9.3
7
 
8
  Create beautiful optin forms with ease. Choose a form design, customize it, and add your form to your blog with a simple mouse-click.
9
 
@@ -59,6 +59,9 @@ Having trouble with the plugin? Simply post your question to the [support forum]
59
  3. Add your form to your website with a simple mouse-click.
60
 
61
  == Changelog ==
 
 
 
62
  = 1.2.9.3 ( May 28th, 2019) =
63
  * MailerLite implementation
64
 
3
  Tags: optin, form, forms, aweber, email subscriber, icontact, mailchimp, getresponse, mad mimi, newsletter, mailchimp forms, mailchimp integrations, mailchimp plugin, getresponse forms, subscribe, aweber forms, after post optin form, after post optin form plugin, lead generation, mobile optin forms, mobile optins, sidebar form, sidebar optin form, wordpress after post optin form, wordpress lead generation, wordpress popups, optin locker, social locker, enter email to download, interspire, email marketer, email marketing, email, e-mail, list, list building, opt-in, newsletter, email list, autoresponder, popup, pop-up, mailing, mailing list, mail, webform, newsletter plugin, optin plugin, opt-in plugin, conversion, design, convertkit, convert, kit
4
  Requires at least: 3.2
5
  Tested up to: 5.2
6
+ Stable tag: 1.2.9.4
7
 
8
  Create beautiful optin forms with ease. Choose a form design, customize it, and add your form to your blog with a simple mouse-click.
9
 
59
  3. Add your form to your website with a simple mouse-click.
60
 
61
  == Changelog ==
62
+ = 1.2.9.4 ( May 29th, 2019 ) =
63
+ * Fix for MailerLite forms when name field is disabled
64
+
65
  = 1.2.9.3 ( May 28th, 2019) =
66
  * MailerLite implementation
67