Optin Forms - Version 1.2.9.8

Version Description

(August 18th, 2020 ) = * WordPress 5.5 fix JavaScript conflict

Download this release

Release Info

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

Code changes from version 1.2.9.7 to 1.2.9.8

Files changed (3) hide show
  1. js/custom.js +3 -7
  2. optin-forms.php +4 -4
  3. readme.txt +7 -4
js/custom.js CHANGED
@@ -32,12 +32,8 @@ jQuery(document).ready(function($) {
32
  jQuery(document).ready(function($) {
33
 
34
  $(".toggle-container").hide();
35
- $(".trigger").toggle(function(){
36
- $(this).addClass("active");
37
- }, function () {
38
- $(this).removeClass("active");
39
- });
40
- $(".trigger").click(function(){
41
  $(this).next(".toggle-container").slideToggle();
42
  });
43
  });
@@ -46,7 +42,7 @@ jQuery(document).ready(function($) {
46
  ACCORDION
47
  ***************************************************/
48
  jQuery(document).ready(function($){
49
- $('.trigger-button').click(function() {
50
  $(".trigger-button").removeClass("active")
51
  $('.accordion').slideUp('normal');
52
  if($(this).next().is(':hidden') == true) {
32
  jQuery(document).ready(function($) {
33
 
34
  $(".toggle-container").hide();
35
+ $(document).on( 'click', '.trigger', function(){
36
+ $(this).toggleClass('active');
 
 
 
 
37
  $(this).next(".toggle-container").slideToggle();
38
  });
39
  });
42
  ACCORDION
43
  ***************************************************/
44
  jQuery(document).ready(function($){
45
+ $(document).on( 'click', '.trigger-button', function(){
46
  $(".trigger-button").removeClass("active")
47
  $('.accordion').slideUp('normal');
48
  if($(this).next().is(':hidden') == true) {
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.7
8
  Author URI: http://www.fancythemes.com
9
  Text Domain: optin-forms
10
  Domain Path: /languages/
@@ -91,7 +91,7 @@ class Optin_Forms {
91
  wp_enqueue_style('wp-color-picker');
92
  wp_enqueue_script('optinforms-color', plugins_url('/js/optinforms-color.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
93
  wp_enqueue_script('placeholder', plugins_url('/js/placeholder.js', __FILE__ ));
94
- wp_enqueue_script('toggle', plugins_url('/js/custom.js', __FILE__ ));
95
  wp_enqueue_script('jquery-ui-slider');
96
  wp_register_style('optinforms-googleFont', '//fonts.googleapis.com/css?family=Share+Tech|Droid+Sans|Lobster|Fenix|Unkempt|Flavors|Viga|Damion|Oleo+Script|Racing+Sans+One|Nixie+One|Fredoka+One|Open+Sans|Overlock+SC|Bubbler+One|Contrail+One|Gochi+Hand|Roboto+Condensed|Russo+One|Cinzel+Decorative|News+Cycle|Marcellus+SC|Chewy|Quicksand|Sanchez|Signika+Negative|Gloria+Hallelujah|Grand+Hotel|Droid+Serif|Englebert|Oswald|Pacifico|Titan+One|Shadows+Into+Light|Dancing+Script|Luckiest+Guy|Parisienne|Coming+Soon|Baumans|Belgrano');
97
 
@@ -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.7' );
120
- wp_enqueue_script('placeholder', plugins_url('/js/placeholder.js', __FILE__ ), array(), '1.2.9.7');
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.8
8
  Author URI: http://www.fancythemes.com
9
  Text Domain: optin-forms
10
  Domain Path: /languages/
91
  wp_enqueue_style('wp-color-picker');
92
  wp_enqueue_script('optinforms-color', plugins_url('/js/optinforms-color.js', __FILE__ ), array( 'wp-color-picker' ), false, true );
93
  wp_enqueue_script('placeholder', plugins_url('/js/placeholder.js', __FILE__ ));
94
+ wp_enqueue_script('toggle', plugins_url('/js/custom.js', __FILE__ ), array(), '1.2.9.8');
95
  wp_enqueue_script('jquery-ui-slider');
96
  wp_register_style('optinforms-googleFont', '//fonts.googleapis.com/css?family=Share+Tech|Droid+Sans|Lobster|Fenix|Unkempt|Flavors|Viga|Damion|Oleo+Script|Racing+Sans+One|Nixie+One|Fredoka+One|Open+Sans|Overlock+SC|Bubbler+One|Contrail+One|Gochi+Hand|Roboto+Condensed|Russo+One|Cinzel+Decorative|News+Cycle|Marcellus+SC|Chewy|Quicksand|Sanchez|Signika+Negative|Gloria+Hallelujah|Grand+Hotel|Droid+Serif|Englebert|Oswald|Pacifico|Titan+One|Shadows+Into+Light|Dancing+Script|Luckiest+Guy|Parisienne|Coming+Soon|Baumans|Belgrano');
97
 
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.8' );
120
+ wp_enqueue_script('placeholder', plugins_url('/js/placeholder.js', __FILE__ ), array(), '1.2.9.8');
121
  if ( optinforms_used_fonts() !== '//fonts.googleapis.com/css?family=' ) {
122
  wp_enqueue_style('optinforms-googleFont', optinforms_used_fonts());
123
  }
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
- === Optin Forms ===
2
  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.4
6
- Stable tag: 1.2.9.7
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.7 ( June 19th, 2020 ) =
63
  * WordPress 5.4 compatibility bump
64
 
1
+ === Optin Forms - Simple List Building Plugin for WordPress ===
2
  Contributors: wpkube, FancyThemes
3
+ Tags: aweber, getresponse, madmimi, mailerlite, convertkit, email list
4
  Requires at least: 3.2
5
+ Tested up to: 5.8
6
+ Stable tag: 1.2.9.8
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.8 (August 18th, 2020 ) =
63
+ * WordPress 5.5 fix JavaScript conflict
64
+
65
  = 1.2.9.7 ( June 19th, 2020 ) =
66
  * WordPress 5.4 compatibility bump
67