Skip to content

Commit

Permalink
Merge pull request #10 from macbookandrew/release/1.8.9
Browse files Browse the repository at this point in the history
release 1.8.9
  • Loading branch information
macbookandrew authored Oct 13, 2023
2 parents 7b2bcc4 + 1a843ea commit ce69dc7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- **Tags:** contact form, contact form 7, cf7, contactform7, google analytics, ga, universal, forms, form, track, tracking, event, events, goal, goals, analytics
- **Donate link:** https://cash.me/$AndrewRMinionDesign
- **Requires at least:** 4.3
- **Tested up to:** 6.0.0
- **Tested up to:** 6.3.0
- **Stable tag:** 1.8.8
- **License:** GPL2

Expand Down Expand Up @@ -100,6 +100,9 @@ Note: these instructions are provided for reference and may become out of date i

## Changelog ##

### 1.8.9 ###
- Fix undefined index issue in new installations

### 1.8.8 ###
- Update tested-up-to version and automatic deployment.

Expand Down
2 changes: 1 addition & 1 deletion cf7-google-analytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin URI: https://andrewrminion.com/contact-form-7-google-analytics/
* Description: Adds Google Analytics Event Tracking to all Contact Form 7 forms.
* Tags: contact form, contact form 7, cf7, contactform7, google analytics, ga, universal, forms, form, track, tracking, event, events, goal, goals
* Version: 1.8.8
* Version: 1.8.9
* Author: Andrew Minion
* Author URI: https://www.andrewrminion.com
*
Expand Down
2 changes: 1 addition & 1 deletion inc/class-cf7-google-analytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private function get_plugin_dir_url() {
public function __construct() {

/** Check version and load the correct file */
$wpcf7 = get_option( 'wpcf7' );
$wpcf7 = get_option( 'wpcf7', array( 'version' => '5' ) );
if ( $wpcf7['version'] <= '4.7' ) {
// TODO: drop support.
add_filter( 'wpcf7_ajax_json_echo', array( $this, 'add_old_tracking' ), 10, 2 );
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: macbookandrew
Tags: contact form, contact form 7, cf7, contactform7, google analytics, ga, universal, forms, form, track, tracking, event, events, goal, goals, analytics
Donate link: https://cash.me/$AndrewRMinionDesign
Requires at least: 4.3
Tested up to: 6.0.0
Stable tag: 1.8.8
Tested up to: 6.3.0
Stable tag: 1.8.9
License: GPL2

Adds Google Analytics Event Tracking to all Contact Form 7 forms.
Expand Down Expand Up @@ -100,6 +100,9 @@ Note: these instructions are provided for reference and may become out of date i

== Changelog ==

= 1.8.9 =
- Fix undefined index issue in new installations

= 1.8.8 =
- Update tested-up-to version and automatic deployment.

Expand Down

0 comments on commit ce69dc7

Please sign in to comment.