Skip to content
This repository has been archived by the owner on Jan 13, 2018. It is now read-only.

Commit

Permalink
1.0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kodie committed Dec 18, 2015
1 parent c4fcf54 commit 7dd6398
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 7 deletions.
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v1.0.7.1 (12/18/2015)
- Fixed a bug where repeater would break multipage forms. (Sorry about that!)

v1.0.7 (12/17/2015)
- Fixed bug where field order was not saved when a form was submitted.
- Fixed syntax error for older versions of PHP.
Expand Down
25 changes: 21 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,23 +169,40 @@ Unfortunately nesting repeaters is not supported at this time.
Yes! Just go to the form editor and change the `Add HTML` and `Remove HTML` settings to `<a>Your Link Text</a>` and they should appear as regular links on your form!

### Development

##### Method 1 (Automatic Updates)
It is possible to use the development version of this plugin in your Wordpress install and keep it updated with [Andy Fragen](https://github.com/afragen)'s [GitHub Updater](https://github.com/afragen/github-updater)!

1. Download & Install [GitHub Updater](https://github.com/afragen/github-updater).
1. Go to Settings -> GitHub Updater
1. Enable Branch Switching
1. Go to Plugins
1. Go to Settings -> GitHub Updater.
1. Enable Branch Switching.
1. Go to Plugins.
1. Select "try another branch" under Gravity Forms Repeater Add-On.
1. Select "development".

and that's it! You will recieve the latest development versions of this plugin!

##### Method 2 (Manual)

1. Deactivate & Uninstall current version of Gravity Forms Repeater Add-On.
1. Download the [latest development version](https://github.com/kodie/gravityforms-repeater/archive/development.zip).
1. Go to Plugins.
1. Select "Add New".
1. Select "Upload Plugin".
1. Select "Choose File" and find the zip file that you downloaded in step 2.
1. Select "Install Now".

and you're good to go!

**Warning: There is a slight possibility that development versions are unstable. Use at your own risk.**

### Version
1.0.7
1.0.7.1

### Changelog
##### 1.0.7.1
* Fixed a bug where repeater would break multipage forms. (Sorry about that!)

##### 1.0.7
* Fixed bug where field order was not saved when a form was submitted.
* Fixed syntax error for older versions of PHP.
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: KodieGrantham
Tags: gravityforms, gravity, forms, form, gravityforms, repeater, repeat, duplicate, duplication, field, fields
Requires at least: 3.9
Tested up to: 4.4
Stable tag: 1.0.7
Stable tag: 1.0.7.1

A Gravity Forms add-on that allows specified groups of fields to be repeated by the user.

Expand Down Expand Up @@ -71,6 +71,9 @@ Yes! Just go to the form editor and change the `Add HTML` and `Remove HTML` sett
4. A view of the front-end. The only visible difference will be the added `+` and `-` buttons.

== Changelog ==
= 1.0.7.1 =
* Fixed a bug where repeater would break multipage forms. (Sorry about that!)

= 1.0.7 =
* Fixed bug where field order was not saved when a form was submitted.
* Fixed syntax error for older versions of PHP.
Expand Down
4 changes: 2 additions & 2 deletions repeater.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
Plugin Name: Gravity Forms Repeater Add-On
Plugin URI: https://wordpress.org/plugins/repeater-add-on-for-gravity-forms/
Description: A Gravity Forms add-on that allows specified groups of fields to be repeated by the user.
Version: 1.0.7
Version: 1.0.7.1
Author: Kodie Grantham
Author URI: http://kodieg.com
GitHub Plugin URI: https://github.com/kodie/gravityforms-repeater
GitHub Branch: master
*/

define('GF_REPEATER_VERSION', '1.0.7');
define('GF_REPEATER_VERSION', '1.0.7.1');
define('GF_REPEATER_PATH', basename(__DIR__).'/'.basename(__FILE__));

add_filter('plugin_row_meta', 'gfrepeater_row_meta', 10, 2);
Expand Down

0 comments on commit 7dd6398

Please sign in to comment.