WD Google Analytics - Version 1.2.1

Version Description

  • Fixed: PHP error if PHP version < 5.5
Download this release

Release Info

Developer webdorado
Plugin Icon 128x128 WD Google Analytics
Version 1.2.1
Comparing to
See all releases

Code changes from version 1.2.0 to 1.2.1

admin/pages/authentication.php CHANGED
@@ -6,7 +6,7 @@
6
  * Time: 5:18 PM
7
  */
8
 
9
- if(empty(GAWD_helper::get_management_accounts())) { ?>
10
  <div class="no_account_content clearfix <?php echo $hide_refresh_accounts; ?>">
11
  <p style="color: red;">
12
  You have Google account, but it does not have configured Analytics account. Click create button to create account and refresh afterwards.
6
  * Time: 5:18 PM
7
  */
8
 
9
+ if(GAWD_helper::get_management_accounts() == false) { ?>
10
  <div class="no_account_content clearfix <?php echo $hide_refresh_accounts; ?>">
11
  <p style="color: red;">
12
  You have Google account, but it does not have configured Analytics account. Click create button to create account and refresh afterwards.
config.php CHANGED
@@ -13,7 +13,7 @@ if(!defined('GAWD_DIR')) {
13
  define('GWD_NAME', plugin_basename(dirname(__FILE__)));
14
  define('GAWD_URL', plugins_url(plugin_basename(dirname(__FILE__))));
15
  define('GAWD_INC', GAWD_URL . '/inc');
16
- define('GAWD_VERSION', '1.2.0');
17
 
18
  $upload_dir = wp_upload_dir();
19
  define('GAWD_UPLOAD_DIR', $upload_dir['basedir'] . '/' . plugin_basename(dirname(__FILE__)));
13
  define('GWD_NAME', plugin_basename(dirname(__FILE__)));
14
  define('GAWD_URL', plugins_url(plugin_basename(dirname(__FILE__))));
15
  define('GAWD_INC', GAWD_URL . '/inc');
16
+ define('GAWD_VERSION', '1.2.1');
17
 
18
  $upload_dir = wp_upload_dir();
19
  define('GAWD_UPLOAD_DIR', $upload_dir['basedir'] . '/' . plugin_basename(dirname(__FILE__)));
gawd_class.php CHANGED
@@ -1646,7 +1646,7 @@ class GAWD {
1646
  public static function activate(){
1647
 
1648
  delete_site_transient('gawd_uninstall');
1649
- if(empty(get_option('gawd_credentials'))) {
1650
  update_option('gawd_credentials', GAWD_helper::get_project_default_credentials());
1651
  }
1652
 
1646
  public static function activate(){
1647
 
1648
  delete_site_transient('gawd_uninstall');
1649
+ if(get_option('gawd_credentials') == false) {
1650
  update_option('gawd_credentials', GAWD_helper::get_project_default_credentials());
1651
  }
1652
 
google-analytics-wd.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Google Analytics
4
  * Plugin URI: https://web-dorado.com/products/wordpress-google-analytics-plugin.html
5
  * Description: Google Analytics WD is a user-friendly all in one plugin, which allows to manage and monitor your website analytics from WordPress dashboard.
6
- * Version: 1.2.0
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
3
  * Plugin Name: Google Analytics
4
  * Plugin URI: https://web-dorado.com/products/wordpress-google-analytics-plugin.html
5
  * Description: Google Analytics WD is a user-friendly all in one plugin, which allows to manage and monitor your website analytics from WordPress dashboard.
6
+ * Version: 1.2.1
7
  * Author: WebDorado
8
  * Author URI: https://web-dorado.com
9
  * License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
library/gawd-custom-ajax-class.php CHANGED
@@ -171,12 +171,13 @@ class GAWD_custom_ajax_class {
171
  if(empty($accounts)) {
172
  $this->send_response(false, 'no_account', 'There are no accounts.');
173
  }
174
-
175
- if(empty($this->get_properties(true))) {
176
  $this->send_response(false, 'no_properties', 'There are no properties.');
177
  }
178
 
179
- if(empty($this->get_profiles(true))) {
 
180
  $this->send_response(false, 'no_profile', 'There are no profiles.');
181
  }
182
 
@@ -212,11 +213,13 @@ class GAWD_custom_ajax_class {
212
  if($remove_reports_data === true) {
213
  GAWD_helper::delete_reports_data();
214
  }
215
-
 
 
216
  if(
217
- empty($this->get_management_accounts(true)) ||
218
- empty($this->get_properties(true)) ||
219
- empty($this->get_profiles(true))
220
  ) {
221
  update_option('gawd_user_data', $this->user_data);
222
  if($add_notice) {
171
  if(empty($accounts)) {
172
  $this->send_response(false, 'no_account', 'There are no accounts.');
173
  }
174
+ $properties = $this->get_properties(true);
175
+ if(empty($properties)) {
176
  $this->send_response(false, 'no_properties', 'There are no properties.');
177
  }
178
 
179
+ $profiles = $this->get_profiles(true);
180
+ if(empty($profiles)) {
181
  $this->send_response(false, 'no_profile', 'There are no profiles.');
182
  }
183
 
213
  if($remove_reports_data === true) {
214
  GAWD_helper::delete_reports_data();
215
  }
216
+ $management_accounts = $this->get_management_accounts(true);
217
+ $properties = $this->get_properties(true);
218
+ $profiles = $this->get_profiles(true);
219
  if(
220
+ empty($management_accounts) ||
221
+ empty($properties) ||
222
+ empty($profiles)
223
  ) {
224
  update_option('gawd_user_data', $this->user_data);
225
  if($add_notice) {
readme.txt CHANGED
@@ -1,25 +1,230 @@
1
- === WD Google Analytics ===
2
  Contributors: webdorado,10web
3
  Tags: google analytics, statistics, tracking, analytics dashboard, ga, google analytics dashboard, analytics, stats, googleanalytics, ecommerce tracking, custom reports, custom dimensions
4
  Requires at least: 3.9
5
  Tested up to: 4.9
6
- Stable tag: 1.2.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
- WD Google Analytics is a powerful plugin, which adds tracking to your website
11
 
12
  == Description ==
13
 
 
 
14
  [WD Google Analytics](https://web-dorado.com/products/wordpress-google-analytics-plugin.html)
15
 
16
- The plugin adds Google Analytics tracking code to your website, provides all the necessary options to easily customize the tracking code to best fit your requirements. With this simple analytics plugin you can enable Anonymize IP address to mask the user IPs, or choose to track links with same destinations, buttons, menus and search boxes with “Enhanced Link Attribution”.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
- == Privacy Policy ==
19
- Google Analytics WD plugin adds GA JS code to the site (optionally) and is used to get GA reports from admin area. It sends analytics data to Google. Whether it will send any personal data to Google, depends on how you set up your website. For example, do not expose emails or other personally identifiable information to Google via URLs. Do not send form submissions via analytics to Google. By default, all the IPs of visitors are anonymized. Personal data processing by Google is explained in their privacy policy https://policies.google.com/privacy. The plugin retrieves from Google and caches data of your GA account and analytics reports in WordPress site database to provide optimization. Reports data is stored in DB for some small period of time (less than 24h). Your GA account data is preserved in your website database as long as you decide to keep it. The plugin asks for your consent to collect site administrator’s email address and site URL to offer customer support, deals and discounts on premium products and more.
20
 
21
  == Changelog ==
22
 
 
 
 
23
  = 1.2.0 =
24
  * Improved: Plugin core functionality is rewritten. The plugin is faster and consumes less memory now.
25
  * Improved: Google API client library is used in non-conflicting way.
@@ -179,7 +384,7 @@ Google Analytics WD plugin adds GA JS code to the site (optionally) and is used
179
 
180
  == Installation ==
181
 
182
- #### Thank you for your interest in Google Analytics WD.
183
 
184
  ### Minimum requirements.
185
  * Wordpress 3.9+
@@ -188,15 +393,15 @@ Google Analytics WD plugin adds GA JS code to the site (optionally) and is used
188
 
189
  ### Perform a new installation
190
 
191
- After downloading the ZIP file of the Google Analytics WD plugin,
192
 
193
  1. Log in to the administrator panel.
194
  2. Go to Plugins Add > New > Upload.
195
- 3. Click "Choose file" ("Browse") and select the downloaded zip file of Google Analytics WD plugin.
196
  *For Mac Users*
197
- *Go to your Downloads folder and locate the folder with the Google Analytics WD. Right-click on the folder and select Compress. Now you have a newly created .zip file which can be installed as described here.*
198
  4. Click "Install Now" button.
199
- 5. Click "Activate Plugin" button for activating the Google Analytics WD.
200
  6. If the installation does not succeed, please contact us at [support@web-dorado.com](mailto:support@web-dorado.com).
201
 
202
  == Screenshots ==
1
+ === WD Google Analytics - user-friendly Google Analytics integration plugin ===
2
  Contributors: webdorado,10web
3
  Tags: google analytics, statistics, tracking, analytics dashboard, ga, google analytics dashboard, analytics, stats, googleanalytics, ecommerce tracking, custom reports, custom dimensions
4
  Requires at least: 3.9
5
  Tested up to: 4.9
6
+ Stable tag: 1.2.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
10
+ WD Google Analytics is a powerful plugin, which adds tracking to your website, lets you view Analytics reports, manage goals, filters, etc.
11
 
12
  == Description ==
13
 
14
+ https://www.youtube.com/watch?v=n1f7ECVFNPI
15
+
16
  [WD Google Analytics](https://web-dorado.com/products/wordpress-google-analytics-plugin.html)
17
 
18
+ [Demo](http://wpdemo.web-dorado.com/wp-admin/admin.php?page=gawd_analytics)
19
+ [User Manual](https://web-dorado.com/wordpress-google-analytics/installation.html)
20
+
21
+
22
+ This is a versatile website tracking tool, that will help you easily bring your Google Analytics reports to the WordPress dashboard. This user friendly plugin will help you get up to date reports on your website performance , compare metrics, track and monitor targeted user activities. The plugin adds a comprehensive and easy to read dashboard to your WordPress admin panel, where you can track and control everything that’s going on your website. In addition to the pre-built Analytics reports, the plugin lets you obtain custom reports on various metrics and dimensions, as well as provides eCommerce, Adsense and Adwords reports. The reports come in comprehensive charts with possibility to export in PDF or CSV formats. The plugin is a certified member of the [Google Analytics Technology Partners Program](https://www.google.com/analytics/partners/company/5124742109462528/gadp/5629499534213120/app/5707702298738688/listing/5639274879778816), so its seamless performance is guaranteed.
23
+
24
+
25
+ ## Benefits
26
+
27
+ * **Control** - With the wide range of the available data you can track and monitor everything on your website, from site audience and traffic, to ecommerce stats. You can also compare data for specific periods and see the progress you’ve made.
28
+
29
+ * **Improve your site performance and rankings** -Using the data from the reports you can significantly improve your site performance and help it get better rankings. Track your pageviews and offer content that your visitors actually like.
30
+
31
+ * **Centralized dashboard** – All your reports, including the custom analytics reports and Adsense, Adwords and eCommerce stats, are available from the plugin’s reporting page, right in your WordPress dashboard.
32
+
33
+ * **Comprehensive reports** - provides comprehensive colorful reports in charts and columns, which are easy to read and analyze. The reports can be exported to different file formats, or sent to multiple recipients via email.
34
+
35
+ * **Customization** - You can set data filters and tracking exclusions to filter out specific data or activities from specific users. Just track data that actually matters to you.
36
+
37
+ * **Minimal effort** – It will require you just a couple of clicks to set-up the analytics plugin, add the tracking code, and start tracking data.
38
+
39
+ * **Timely Support** - The team provides timely and effective support to all its users. We keep standards high and response time low.
40
+
41
+
42
+ ## What’s in it
43
+
44
+ **ANALYTICS DASHBOARD**
45
+
46
+ The overview report page in the plugin called “Analytics Dashboard”, allows users to quickly grasp general data of their website stats. The Analytics Dashboard gives provides real time information on site visitors, audience stats, including new and returning visitors, page views, session duration and more. You can also check out what browsers your visitors used and locations your visitors come from.
47
+
48
+ **METRIC COMPARISON**
49
+
50
+ Metrics comparison lets you compare two metrics on a single graph within a specified date range. Apart from comparing two different metrics, you can also choose to track one specific metric during two different date periods.
51
+
52
+ **CUSTOM DIMENSIONS** (_Premium version_)
53
+
54
+ You can track custom dimensions in the analytics plugin and get reports for logged in users, specific post types, post authors, category, tags, post publication month and year.
55
+
56
+ **CUSTOM REPORTS** (_Premium version_)
57
+
58
+ You can configure custom reports on any metric and dimension of your choice, and view the relevant reports from the plugin’s reporting page. Custom reports can be set for tracking with any possible combinations of metric and dimension.
59
+
60
+ **ECOMMERCE REPORTS** (_Premium version_)
61
+
62
+ If you’re running an ecommerce website, you can keep track of your sales statistics by revenues, transactions, products and performance under the reporting page of the plugin .
63
+
64
+ **GOAL MANAGEMENT**
65
+
66
+ The analytics plugin allows you to set and manage goals to track specific user interactions on your website. There are different types of goals you can set,such as duration, destination and pages/screens per session, each of the goals coming with their own set of options to choose. An example of a goal can be visiting a specific page, or having your visitors stay on a page for a certain amount of time. You can set as many goals as you want.
67
+
68
+ **GOOGLE ADSENSE AND ADWORDS REPORTS** (_Premium version_)
69
+
70
+ Link your Adsense and Adwords accounts to your Google Analytics account and check the relevant reports directly on your website dashboard .
71
+
72
+
73
+ **MULTIPLE CHART TYPES**
74
+
75
+ The Plugin made data reporting and analyzing easy. The reports are responsive and come with comprehensive pie, line or column charts.
76
+
77
+
78
+ **FRONTEND REPORTS**
79
+
80
+ Frontend reports let you display tracking results to the selected users in the frontend.
81
+
82
+ **USER AND ROLE PERMISSIONS**
83
+
84
+ Select the roles and users having access to Analytics reports in the WordPress dashboard and frontend reports.
85
+
86
+
87
+ **TRACKING EXCLUSIONS** (_Premium version_)
88
+
89
+ Tracking exclusions will help you exclude the activities of specific users and roles, such as admins, authors or subscribers, from the reports. Any activities or interactions from these users or roles will be excluded from the reports .
90
+
91
+ **ALERTS AND PUSHOVER NOTIFICATIONS** (_Premium version_)
92
+
93
+ You can get daily, weekly or monthly alerts and Pushover notifications about highest or lowest number of Sessions, Users, Bounces or Session Durations on your website.The alerts are easy to set up.
94
+
95
+
96
+
97
+ ## SETTINGS/CUSTOMIZATION
98
+
99
+ _*Some customizations described here are available in Premium version. Please refer to premium features below._
100
+
101
+ The plugin adds the Google Analytics tracking code to your website and brings all your site stats into your dashboard.The plugin has a user friendly admin section, where you can configure tracking options, view the preset and custom configured reports, set tracking filters and exclusions, and configure the plugin settings. The reporting section of the plugin provides an extensive data information about pretty much any activity taking place on your website. You can customise Analytics options under the settings tab of the plugin. Here you can configure alerts and the Pushover notifications by setting alert conditions and choosing the period for receiving alerts. From the same section you can set tracking filters by country, region, city or IP address. Data from these sources will be filtered out from the reports.
102
+
103
+ For more advanced users, there are advanced setting options, to enable cross domain tracking,enable frontend/backend reports for posts and pages, choose roles for viewing frontend reports, and many more.
104
+
105
+ Under the goals management tab you can set and configure different goal types,and track targeted activities.To configure custom reports you’ll need to choose the metric and the dimension you want to get a report for. It will appear under the reports section shortly.
106
+ There are many more features in the plugin that can help you dive deep into the statistics, monitor your site’s performance and actually improve it. To learn more, check out the plugin’s user guide.
107
+
108
+ ## Premium version adds
109
+
110
+
111
+ * Analytics reports on Demographics, Interests, Geo, Behavior, Technology, Mobile, Site content, Site Speed, Events, Goals.
112
+
113
+ * Tracking Custom Dimensions: Logged in, Post type, Author, Category, Tags, Published Month, Published Year.
114
+
115
+ * Custom Reports with any possible configurations of metric and dimension.
116
+
117
+ * Six Ecommerce tracking reports based on: Time to Purchase, Transaction ID, Sales Performance, Product SKU, Product Category, Product Name.
118
+
119
+ * Link and track your Google AdSense and Google AdWords accounts.
120
+
121
+ * Alerts and Pushover notifications to monitor any changes in your website traffic.
122
+
123
+ * Set tracking exclusions based on WordPress roles and users.
124
+
125
+
126
+ = Privacy Notices =
127
+
128
+ WD Google Analytics plugin adds GA JS code to the site (optionally) and is used to get GA reports from admin area. It sends analytics data to Google. Whether it will send any personal data to Google, depends on how you set up your website. For example, do not expose emails or other personally identifiable information to Google via URLs. Do not send form submissions via analytics to Google. By default, all the IPs of visitors are anonymized. Personal data processing by Google is explained in their privacy policy https://policies.google.com/privacy. The plugin retrieves from Google and caches data of your GA account and analytics reports in WordPress site database to provide optimization. Reports data is stored in DB for some small period of time (less than 24h). Your GA account data is preserved in your website database as long as you decide to keep it. The plugin asks for your consent to collect site administrator’s email address and site URL to offer customer support, deals and discounts on premium products and more.
129
+
130
+ == Frequently Asked Questions ==
131
+
132
+ = How can I connect the plugin to my Google Analytics account? =
133
+
134
+ Click on Analytics menu item, which will start Google Analytics account authorization process. Click Authenticate button and login to your Google account.
135
+
136
+ A window asking for relevant permissions will appear. Click Allow and copy the authentication code from the text input. You will be redirected to plugin’s Tracking page.
137
+
138
+ Here you can add a web property on your Analytics account using current WordPress website. Provide a Name for the property and click Add. You can check and manage web properties from your Analytics account, Admin page.
139
+
140
+ Alternatively, you can click Later and configure the web property any other time.
141
+
142
+ You can Reauthenticate in Settings section anytime in case you need to use a different Google account to monitor Analytics tracking.
143
+
144
+
145
+ = What reports can I see in the plugin? =
146
+
147
+ The plugin enables you to view various analytics reports from your WordPress dashboard, including the following:
148
+ Audience. Report of your website audience. Provides details about new and returning users of your website, sessions, bounces, pageviews, page/sessions and session durations.
149
+ Real Time. Shows the number of active users visiting your website pages at that second.
150
+ Demographics. Displays tracking statistics of your website users based on their age and gender.
151
+ Interests. Provides tracking information about site users depending on Affinity Categories (e.g. Music Lovers or Mobile Enthusiasts), In-Market Segments (based on online product purchase interests) and Other Categories (most specific identification, for example, tennis lovers among Sports Fans).
152
+ Geo. Geo-identifier report is built from interactions of location (countries, cities) and language of your website users.
153
+ Behavior. Compares number of New visitors and Returning users of your website in percents. You can check the duration of sessions with Engagement report.
154
+ Technology. Identifies tracking of the site based on operating systems and browsers visitors use.
155
+ Mobile. Shows statistics of mobile and desktop devices visitors have used while interacting with your website.
156
+ Custom Dimensions. Reports of Custom Dimensions you have added will be displayed under this tab. Step-by-step guide for the setup is in Custom Dimensions section of this guide.
157
+ Traffic Source. Displays overall graph of traffic sources directing to your website.
158
+ AdWords. If your website is registered on Google AdWords, you can link its Analytics to AdWords, and gather relevant tracking information with this report.
159
+ Pages. Pages report table will provide you information about Bounces, Entrances, Pageviews, Unique Pageviews, time spent on pages, Exits and Average page loading time.
160
+ Site Speed. Shows the average load time of your website during specified date range.
161
+ Events. Displays the report based on Events you set up on Analytics of your website. Graphs are built based on Event Labels, Categories and Actions.
162
+ Goals. Set Goals from Goal Management and review their reports under this tab. Instructions to set up goals will be provided in Goal Management section of this guide.
163
+ Ecommerce. Check sales statistics of your website by revenues, transactions, products and performance.
164
+ AdSense. Link your Analytics and AdSense accounts from Admin settings and keep track of AdSense tracking under this report.
165
+ Custom Reports. Add Custom Reports from any metric and dimension in Custom Reports page, and view relevant tracking information in this tab.
166
+
167
+
168
+ = How can I add a custom report in the plugin? =
169
+
170
+ Besides the built-in report types, the plugin also provides the functionality to configure Custom Reports and view related statistics within Reports page.
171
+ Start with providing a Name for your Custom Report. Then select a Metric and Dimension, based on which the statistics will be built.
172
+ For example, you can select Organic Searches as the metric and Keyword as the dimension. This custom setup will let you have a report based on the keywords, which visitors use to find your website with search engines.
173
+ You can view and manage created Custom Reports on the same page. The list will appear with a table under options of Custom Reports.
174
+
175
+ = Can I export the reports from the analytics plugin? =
176
+
177
+ You can export current report to CSV and PDF formats. Hover on Export button and click one of the options to download your analytics report.
178
+ Moreover, the same report can be sent via email to one or more recipients which you specify. The mails can be sent one time, as well as periodically. Click the Email button to start the setup. A popup window will appear with the following options:
179
+
180
+ From. This is the email address, from which the report will be sent. It is the address you defined for your Administrator account, and it can be changed from WordPress Settings > General > Email Address option.
181
+ To. Determine the recipients of the report email by providing their email addresses separated by commas.
182
+ Subject. Write a subject for the email. It is set to the report title by default, but you can modify it and have a customized title.
183
+ Attachment. Pick the type of the attachment for your report. It can be sent as a CSV or a PDF file.
184
+ Frequency. Set the frequency for sending out report emails. The following options are available:
185
+ Once. The report is sent only one time.
186
+ Daily. The email is sent each day.
187
+ Weekly. Chose this option to send the report every week. Make sure to set the day of the week, when the email will be sent.
188
+ Monthly. Set the reports to be sent every month. Select the day of the month, when the email will be sent.
189
+ Additional Message. You can add any e-mail content to go along with your Analytics report.
190
+ The scheduled e-mails can be deleted from Settings > Emails page of the plugin.
191
+
192
+
193
+ = Can I set goals in the plugin? =
194
+
195
+ Goals in Google Analytics lets you track targeted activities, which users complete on your website. A completed activity is called conversion. You can set visiting a certain page as a goal, for example, or have users stay on your website a certain period of time. Other examples of goals can be checkout for a shopping site, and setting a certain number of pageviews per session.
196
+ You can set and manage goals for your website tracking in WD Google Analytics > Goal Management page. Note, that Goals configured with the plugin are set only to the domain on which the plugin is installed.
197
+ Select the View that you’re going to track and configure the following options based on the type of goal you would like to set:
198
+ Provide a Name for the goal and choose its Type from one of the following:
199
+ Destination. Set a specific URL for the goal, for example, your ecommerce website shop page. When a user visits it, it will be counted as a goal conversion. You can set the destination using one of these conditions:
200
+
201
+ * Equals to. Should be the exact URL of the page you are using to set the goal.
202
+ * Begins with. Mentions the beginning of the tracked page link.
203
+ * Regular expression. This option will search all the visited links with the specified Regular Expression. E.g., if you set it to "test", and users visit URLs which contain “test”, this will be considered as a conversion.
204
+
205
+ Duration. Determine the time period, during which you need users to stay on your website to complete the goal. Goals of this type are controlled with less than and greater than conditions.
206
+ Pages/Screens per session. Choose the number of page/screen views per session, and set the goal using less than and greater than conditions.
207
+
208
+
209
+ = How can I link my AdSense and AdWords accounts to the plugin? =
210
+
211
+ **AdSense**
212
+
213
+ If you have an authorized account on Google AdSense, you can link it to Google Analytics and view its tracking information among plugin reports.
214
+ Open your Google Analytics account, choose the account you want to link with AdSense and navigate to Admin tab. You will see AdSense Linking option under Product Linking settings. Open AdSense Linking and click on New AdSense Link button.
215
+ Afterwards choose the necessary AdSense account you'd like to link with your Google Analytics, then click Continue. Choose the views, where you would like to have AdSense data. The accounts will be connected after clicking Enable Link and then Done.
216
+
217
+ **AdWords**
218
+
219
+ Firstly make sure you have a AdWords account, or create one here. Open your Google Analytics account, choose the website you are tracking and go to Admin. Click on Adwords Linking from Product Linking settings.
220
+ After toolbox opens, make sure all the necessary AdWords accounts are marked as checked and click Continue. Provide Link group title and click Link Accounts after enabling necessary link groups for AdWords Tracking. Related tracking reports will appear on your Reports page automatically.
221
 
 
 
222
 
223
  == Changelog ==
224
 
225
+ = 1.2.1 =
226
+ * Fixed: PHP error if PHP version < 5.5
227
+
228
  = 1.2.0 =
229
  * Improved: Plugin core functionality is rewritten. The plugin is faster and consumes less memory now.
230
  * Improved: Google API client library is used in non-conflicting way.
384
 
385
  == Installation ==
386
 
387
+ #### Thank you for your interest in WD Google Analytics.
388
 
389
  ### Minimum requirements.
390
  * Wordpress 3.9+
393
 
394
  ### Perform a new installation
395
 
396
+ After downloading the ZIP file of the WD Google Analytics plugin,
397
 
398
  1. Log in to the administrator panel.
399
  2. Go to Plugins Add > New > Upload.
400
+ 3. Click "Choose file" ("Browse") and select the downloaded zip file of WD Google Analytics plugin.
401
  *For Mac Users*
402
+ *Go to your Downloads folder and locate the folder with the WD Google Analytics. Right-click on the folder and select Compress. Now you have a newly created .zip file which can be installed as described here.*
403
  4. Click "Install Now" button.
404
+ 5. Click "Activate Plugin" button for activating the WD Google Analytics.
405
  6. If the installation does not succeed, please contact us at [support@web-dorado.com](mailto:support@web-dorado.com).
406
 
407
  == Screenshots ==