Version Description
No known upgrade issues.
Download this release
Release Info
Developer | mpwalsh8 |
Plugin | Google Forms |
Version | 0.22 |
Comparing to | |
See all releases |
Code changes from version 0.21 to 0.22
- index.php +2 -2
- readme.txt +4 -1
- wpgform-core.php +3 -0
index.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
* Plugin Name: WordPress Google Form
|
5 |
* Plugin URI: http://michaelwalsh.org/wordpress/wordpress-plugins/wpgform/
|
6 |
* Description: Add Google Forms to a WordPress web site. Display a Google Form directly into your posts, pages or sidebar. Style the Google Form to match your existing theme and display a custom confirmation page after form submission.
|
7 |
-
* Version: 0.
|
8 |
-
* Build: 0.
|
9 |
* Last Modified: $WCDATE$
|
10 |
* Author: Mike Walsh
|
11 |
* Author URI: http://www.michaelwalsh.org
|
4 |
* Plugin Name: WordPress Google Form
|
5 |
* Plugin URI: http://michaelwalsh.org/wordpress/wordpress-plugins/wpgform/
|
6 |
* Description: Add Google Forms to a WordPress web site. Display a Google Form directly into your posts, pages or sidebar. Style the Google Form to match your existing theme and display a custom confirmation page after form submission.
|
7 |
+
* Version: 0.22
|
8 |
+
* Build: 0.22.$WCREV$
|
9 |
* Last Modified: $WCDATE$
|
10 |
* Author: Mike Walsh
|
11 |
* Author URI: http://www.michaelwalsh.org
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: Google Forms, Google Docs, Google, Spreadsheet, shortcode, forms
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3.1
|
7 |
-
Stable tag: 0.
|
8 |
|
9 |
Embeds a published, public Google Form in a WordPress post, page, or widget.
|
10 |
|
@@ -177,6 +177,9 @@ No known upgrade issues.
|
|
177 |
|
178 |
== Changelog ==
|
179 |
|
|
|
|
|
|
|
180 |
= Version 0.21 =
|
181 |
* Added ability to display a Javascript alert box upon successful form submission.
|
182 |
* Fixed more syntax errors in the ReadMe.txt markdown.
|
4 |
Tags: Google Forms, Google Docs, Google, Spreadsheet, shortcode, forms
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.3.1
|
7 |
+
Stable tag: 0.22
|
8 |
|
9 |
Embeds a published, public Google Form in a WordPress post, page, or widget.
|
10 |
|
177 |
|
178 |
== Changelog ==
|
179 |
|
180 |
+
= Version 0.22 =
|
181 |
+
* Fixed bug with checkboxes not working because jQuery wasn't loaded.
|
182 |
+
|
183 |
= Version 0.21 =
|
184 |
* Added ability to display a Javascript alert box upon successful form submission.
|
185 |
* Fixed more syntax errors in the ReadMe.txt markdown.
|
wpgform-core.php
CHANGED
@@ -523,6 +523,9 @@ jQuery(document).ready(function($) {
|
|
523 |
*/
|
524 |
function wpgform_head()
|
525 |
{
|
|
|
|
|
|
|
526 |
$wpgform_options = wpgform_get_plugin_options() ;
|
527 |
|
528 |
// Load default gForm CSS?
|
523 |
*/
|
524 |
function wpgform_head()
|
525 |
{
|
526 |
+
// wpGForm needs jQuery!
|
527 |
+
wp_enqueue_script('jquery') ;
|
528 |
+
|
529 |
$wpgform_options = wpgform_get_plugin_options() ;
|
530 |
|
531 |
// Load default gForm CSS?
|