Skip to content

Commit

Permalink
Update to v2.3.3 from wordpress.org SVN repo
Browse files Browse the repository at this point in the history
  • Loading branch information
pacotole committed Sep 11, 2019
1 parent 899aaa3 commit 9ac15c1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: whatsapp business, whatsapp, click to chat, button, whatsapp support chat,
Requires at least: 3.0.1
Tested up to: 5.2
Requires PHP: 5.3
Stable tag: 2.3.2
Stable tag: 2.3.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -117,8 +117,11 @@ WhatsApp me send an event (if GTM detected) when user click to launch WhatsApp:

== Changelog ==

= 2.3.3 =
* FIX javascript error when "ga" global object is defined but isn't Google Analytics.

= 2.3.2 =
* FIX PHP notice on some archive pages
* FIX PHP notice on some archive pages.

= 2.3.1 =
* Readme texts and description.
Expand Down
2 changes: 1 addition & 1 deletion public/js/whatsappme.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
'event_label': link,
'transport_type': 'beacon'
});
} else if (typeof ga == 'function') {
} else if (typeof ga == 'function' && typeof ga.getAll == 'function') {
// Send event (Universal Analtics - analytics.js)
ga('set', 'transport', 'beacon');
var trackers = ga.getAll();
Expand Down
2 changes: 1 addition & 1 deletion public/js/whatsappme.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions whatsappme.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Plugin Name: WhatsApp me
* Plugin URI: https://wame.chat
* Description: Connect a WordPress chat with WhatsApp. The best solution for marketing and support. Stop losing customers and increase your sales.
* Version: 2.3.2
* Version: 2.3.3
* Author: Creame
* Author URI: https://crea.me
* License: GPL-2.0+
Expand All @@ -27,7 +27,7 @@
* Currently plugin version.
* Start at version 1.0.0 and use SemVer - https://semver.org
*/
define( 'WHATSAPPME_VERSION', '2.3.2' );
define( 'WHATSAPPME_VERSION', '2.3.3' );

/**
* The core plugin class that is used to define internationalization,
Expand Down

0 comments on commit 9ac15c1

Please sign in to comment.