Forms by CaptainForm – Form Builder for WordPress - Version 1.7.2.3

Version Description

(11 October 2016) = * Extended compatibility with custom folder structure

Download this release

Release Info

Developer 123contactform
Plugin Icon 128x128 Forms by CaptainForm – Form Builder for WordPress
Version 1.7.2.3
Comparing to
See all releases

Code changes from version 1.7.2.2 to 1.7.2.3

captainform.php CHANGED
@@ -6,7 +6,7 @@ defined('ABSPATH') or die('No direct access!');
6
  Description: CaptainForm is a fully-featured WordPress form plugin created for web designers, developers, and also for non-tech savvy users.
7
  Author: CaptainForm
8
  Author URI: https://profiles.wordpress.org/captainform
9
- Version: 1.7.2.2
10
  */
11
 
12
  /* * ****************************
6
  Description: CaptainForm is a fully-featured WordPress form plugin created for web designers, developers, and also for non-tech savvy users.
7
  Author: CaptainForm
8
  Author URI: https://profiles.wordpress.org/captainform
9
+ Version: 1.7.2.3
10
  */
11
 
12
  /* * ****************************
includes/init.php CHANGED
@@ -25,7 +25,7 @@ function check_captainform_settings(){
25
  }
26
 
27
  function adding_captainform_misc_functions() {
28
- wp_register_script('captainform_misc_functions', plugins_url('/includes/js/misc_functions.js', __DIR__), array(), uniqid(), false);
29
  wp_enqueue_script('captainform_misc_functions');
30
  }
31
 
25
  }
26
 
27
  function adding_captainform_misc_functions() {
28
+ wp_register_script('captainform_misc_functions', plugin_dir_url( __FILE__ ) . 'js/misc_functions.js', array(), uniqid(), false);
29
  wp_enqueue_script('captainform_misc_functions');
30
  }
31
 
includes/integrations/forge-element.php CHANGED
@@ -3,7 +3,7 @@ define('FORGE_ELEMENT_DOMAIN', 'captainform');
3
 
4
  function adding_captainform_forge_element_css()
5
  {
6
- wp_enqueue_style('forge_element_css', plugins_url('css/forge_element.css', __DIR__), false, uniqid());
7
  }
8
 
9
  function forge_element_captainform($atts, $content)
3
 
4
  function adding_captainform_forge_element_css()
5
  {
6
+ wp_enqueue_style('forge_element_css', plugin_dir_url( __FILE__ ) . '../css/forge_element.css', false, uniqid());
7
  }
8
 
9
  function forge_element_captainform($atts, $content)
includes/settings.php CHANGED
@@ -11,7 +11,7 @@ global $captainform_plugin_name,
11
  $captainform_widget_text_filter;
12
 
13
  $captainform_plugin_name = 'captainform';
14
- $captainform_plugin_version = "1.7.2.2";
15
 
16
  //plugin options key name
17
  $captainform_option1 = $captainform_plugin_name . '_installation_id';
11
  $captainform_widget_text_filter;
12
 
13
  $captainform_plugin_name = 'captainform';
14
+ $captainform_plugin_version = "1.7.2.3";
15
 
16
  //plugin options key name
17
  $captainform_option1 = $captainform_plugin_name . '_installation_id';
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: captainform, 123contactform
4
  Tags: CaptainForm, form builder plugin, drag-and-drop, event registration form, order form, paypal form, quiz, survey, popup form, newsletter subscription, contact form, secured forms
5
  Requires at least: 3.9
6
  Tested up to: 4.6
7
- Stable tag: 1.7.2.2
8
 
9
  User-friendly form builder with advanced features. Build any type of form or survey with drag & drop ease and no add-ons required.
10
 
@@ -92,6 +92,9 @@ We support MasterCard, Visa, PayPal, American Express, JCB, Discover/Novus and D
92
  To downgrade the plugin, click on the Downgrade button under our Pioneer plan and fill out the cancellation form. All premium features will be deactivated, but you can upgrade again at any time by purchasing a new license key.
93
 
94
  == Changelog ==
 
 
 
95
  = 1.7.2.2 (30 September 2016) =
96
  * Added support for PHP 5.2
97
 
4
  Tags: CaptainForm, form builder plugin, drag-and-drop, event registration form, order form, paypal form, quiz, survey, popup form, newsletter subscription, contact form, secured forms
5
  Requires at least: 3.9
6
  Tested up to: 4.6
7
+ Stable tag: 1.7.2.3
8
 
9
  User-friendly form builder with advanced features. Build any type of form or survey with drag & drop ease and no add-ons required.
10
 
92
  To downgrade the plugin, click on the Downgrade button under our Pioneer plan and fill out the cancellation form. All premium features will be deactivated, but you can upgrade again at any time by purchasing a new license key.
93
 
94
  == Changelog ==
95
+ = 1.7.2.3 (11 October 2016) =
96
+ * Extended compatibility with custom folder structure
97
+
98
  = 1.7.2.2 (30 September 2016) =
99
  * Added support for PHP 5.2
100