PluginProbe
Wingify / 4.15
Wingify v4.15
4.15 4.16 trunk 1.0 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.7 3.8 3.9 4.0 All 39 releases
← All changes | readme.txt +232 -29 2.44.15 View file →
@@ -1,25 +1,52 @@
1 -=== Visual Website Optimizer ===
2 -Contributors: @commentluv, VWO
3 -Plugin Name: Visual Website Optimizer
4 -Plugin URI: https://vwo.com/
5 -Tags: split testing, analytics, stats, visual web optimizer, vwo
6 -Donate link:http://comluv.com/about/donate
1 +=== Wingify ===
2 +Contributors: vwointegrations
3 +Plugin Name: Wingify
4 +Plugin URI: https://wingify.com/
5 +Tags: vwo, wingify, a/b testing, woocommerce tracking, split testing
7 6 Requires at least: 2.7
8 -Tested up to: 4.1.1
9 -Stable tag: 2.4
7 +Tested up to: 7.0
8 +Stable tag: 4.15
9 +License: GPLv2 or later
10 +License URI: https://www.gnu.org/licenses/gpl-2.0.html
10 11
11 -World's easiest to use A/B, Split and Multivariate testing tool.
12 +Wingify (formerly VWO & AB Tasty) is the all-in-one platform that helps you conduct visitor research, build an optimization roadmap, and run continuous experimentation.
12 13
13 14 == Description ==
14 -This plugin will allow you to automatically insert the Visual Website Optimizer tracking code. Just enter your VWO Account ID from http://app.vwo.com/#/settings
15 15
16 +This plugin simplifies the process of adding the Wingify SmartCode to your WordPress site and enables automatic tracking of WooCommerce events like product views, add-to-cart actions, and completed purchases. It also offers optional server-side tracking to bypass client-side blockers and improve event reliability.
17 +
18 +=== Key Features ===
19 +* Easy Wingify SmartCode integration
20 +* Automatic WooCommerce event tracking
21 +* Event-level data passed to Wingify for advanced reporting
22 +* Support for asynchronous and synchronous SmartCode types
23 +* Optional server-side tracking for more accurate analytics
24 +* Works seamlessly with WooCommerce
25 +
16 26 == Installation ==
17 -Wordpress : Extract the zip file and just drop the contents in the wp-content/plugins/ directory of your WordPress installation and then activate the Plugin from Plugins page.
18 27
19 -WordpressMu : Same as above
28 +1. Log in to your WordPress dashboard.
29 +2. Navigate to Plugins > Add New.
30 +3. Click "Upload Plugin" and select the plugin ZIP file.
31 +4. Click "Install Now", then "Activate".
32 +5. Go to **Settings > Wingify** to configure your plugin.
20 33
21 34 == Frequently Asked Questions ==
35 +
36 += What is my Wingify Account ID? =
37 +You can find your Wingify Account ID in your Wingify dashboard under Account Settings.
38 +
39 += Does this plugin support server-side tracking? =
40 +Yes, server-side tracking is available and can be enabled in the WooCommerce tab of the plugin settings.
41 +
42 += What WooCommerce events are tracked automatically? =
43 +- Product Viewed
44 +- Add to Cart
45 +- Remove from Cart
46 +- Purchase (Order Completed)
47 +
48 +== Frequently Asked Questions ==
22 49 = I can't see any code added to my header or footer when I view my page source =
23 50 Your theme needs to have the header and footer actions in place before the `</head>` and before the `</body>`
24 51
25 52 = If I use this plugin, do I need to enter any other code on my website? =
@@ -25,12 +52,202 @@
25 52 = If I use this plugin, do I need to enter any other code on my website? =
26 53 No, this plugin is sufficient by itself
27 54
28 55 == Screenshots ==
29 -1. Settings page (Asynchronous Code)
30 -2. Settings page (Synchronous Code)
56 +1. General Settings
57 +2. Advanced Settings
58 +3. WooCommerce Settings
31 59
32 -== ChangeLog ==
60 +== Configuration and Setup ==
61 +
62 +=== Configuring General Settings ===
63 +1. Go to **Settings > Wingify**.
64 +2. Enter your Wingify Account ID.
65 +3. Choose your preferred code type:
66 + - **Asynchronous (Recommended)**: Loads faster, doesn't block elements.
67 + - **Synchronous**: Not recommended for performance reasons.
68 +4. Click **Save Changes**.
69 +
70 +=== Configuring WooCommerce Settings ===
71 +1. Open the **WooCommerce** tab in the Wingify settings.
72 +2. Enable WooCommerce Event Tracking.
73 +3. Enable the specific events you want to track:
74 + - Product Viewed
75 + - Add to Cart
76 + - Product Removed From Cart
77 + - Purchase Order
78 +4. Click **Save Changes**.
79 +
80 +=== Configuring Server-Side Tracking (Optional) ===
81 +1. Enable **Server-Side Tracking** from the WooCommerce tab.
82 +2. Click **Save Changes**.
83 +
84 +=== Verifying Event Tracking in Wingify ===
85 +1. Log in to your Wingify account.
86 +2. Go to **Data360 > Events**.
87 +3. Perform sample actions on your WooCommerce store.
88 +4. Check the events list in Data360.
89 +5. Register any events listed under “Unregistered Events”.
90 +
91 +== WooCommerce Events Imported Into Wingify ==
92 +
93 +=== Product Viewed ===
94 +- **Event API Name**: `woocommerce.productViewed`
95 +- Payload:
96 + - price, currency, productId, productTitle, productUrl, productCategory, productSku, quantity, variantId
97 +
98 +=== Add To Cart ===
99 +- **Event API Name**: `woocommerce.addToCart`
100 +- Payload:
101 + - price, currency, productId, productTitle, productUrl, productCategory, productSku, quantity, variantId
102 +
103 +=== Remove from Cart ===
104 +- **Event API Name**: `woocommerce.removeFromCart`
105 +- Payload:
106 + - price, currency, productId, productTitle, productUrl, productCategory, productSku, quantity, variantId
107 +
108 +=== Purchase ===
109 +- **Event API Name**: `woocommerce.purchase`
110 +- Payload:
111 + - orderId, productId, productSku, productPrice, productQuantity, discount, shippingPrice, totalTax, totalPrice, currencyCode
112 +
113 +== Upgrade Notice ==
114 += 4.15 =
115 +Plugin display name, settings labels, and help links now use Wingify (formerly VWO). Existing Account ID settings are unchanged.
116 +
117 += 4.14 =
118 +* Added support for Wingify SmartCode detection and script delivery for relevant accounts. Users with Wingify accounts will now get the optimized SmartCode automatically.
119 +
120 += 4.13 =
121 +Version Upgrade
122 +
123 += 4.12 =
124 +Fixed the synchronous script tag attribute to support the preview debugger.
125 +
126 += 4.11 =
127 +Fixed the synchronous script tag attribute to support the preview debugger.
128 +
129 += 4.10 =
130 +VWO scripts are now always excluded from Jetpack Boost’s script deferral.
131 +
132 += 4.9 =
133 +VWO SmartCode 2.2 updated with improved performance and reliability.
134 +
135 += 4.8 =
136 +Major update: New settings UI, WooCommerce support added, and multiple bug fixes. Upgrade recommended for improved tracking and compatibility.
137 +
138 +== Changelog ==
139 += 4.15 =
140 +* Updated plugin branding to Wingify (formerly VWO).
141 +* Existing Account ID, settings, and SmartCode behavior are unchanged.
142 +
143 += 4.14 =
144 +* Added support for Wingify SmartCode detection and script delivery for relevant accounts. Users with Wingify accounts will now get the optimized SmartCode automatically.
145 +
146 += 4.13 =
147 +* Version upgrade
148 +
149 += 4.12 =
150 +* Fixed the synchronous script tag attribute to support the preview debugger.
151 +
152 += 4.11 =
153 +* Fixed the synchronous script tag attribute to support the preview debugger.
154 +
155 += 4.10 =
156 +* VWO scripts are now always excluded from Jetpack Boost’s script deferral.
157 +
158 += 4.9 =
159 +* VWO SmartCode 2.2 updated
160 +* Improved SmartCode performance and reliability
161 +
162 += 4.8 =
163 +Major update: New settings UI, WooCommerce support added, and multiple bug fixes. Upgrade recommended for improved tracking and compatibility.
164 +
165 += 4.7 =
166 +* Minor bug fix
167 +
168 += 4.6 =
169 +* Revamped plugin settings UI for improved usability.
170 +* Added support for WooCommerce event tracking (Product Viewed, Add to Cart, Purchase, etc.).
171 +* Optional server-side tracking for WooCommerce events added.
172 +* Multiple bug fixes and performance improvements.
173 +
174 += 4.5 =
175 +* Tested with latest version
176 +* VWO SmartCode 2.1 updated
177 +
178 += 4.4 =
179 +* Tested with latest version
180 +* Minor bug fix
181 +
182 += 4.3 =
183 +* Minor bug fix
184 +
185 += 4.2 =
186 +* Tested with latest version
187 +* VWO SmartCode 2.1 updated
188 +
189 += 4.1 =
190 +* Tested with latest version
191 +* PHPCS Errors resolved
192 +* WP Rocket support added
193 +
194 += 4.0 =
195 +* Tested with latest version
196 +* VWO SmartCode updated
197 +
198 += 3.9 =
199 +* Tested with latest version
200 +* Code improvement and add Rocket loader handling
201 +
202 += 3.8 =
203 +* Tested with latest version
204 +* Fix WP Rocket Issue
205 +
206 += 3.7 =
207 +* Tested with latest version
208 +* Fix Divi Frontend Editor Issue
209 +
210 += 3.6 =
211 +* Tested with latest version
212 +
213 += 3.5 =
214 +* Tested with latest version
215 +* Rename label "Handle Rocket Loader Issue" to "Skip Deferred Execution"
216 +* Set field default value of "Skip Deferred Execution" to "yes"
217 +
218 += 3.4 =
219 +* Tested with latest version
220 +* Code improvement and add Rocket loader handling
221 +
222 += 3.3 =
223 +* Tested with latest version
224 +* Add new options in settings
225 +
226 += 3.2 =
227 +* Tested with latest version
228 +
229 += 3.1 =
230 +* Add Setting link in plugin listing page
231 +
232 += 3.0 =
233 +* Update Logo and links
234 +
235 += 2.9 =
236 +* Tested with latest version
237 +
238 += 2.8 =
239 +* Tested with latest version
240 +
241 += 2.7 =
242 +* Update Plugin Name, Author and Description
243 +
244 += 2.6 =
245 +* Remove Conflict Errors
246 +
247 += 2.5 =
248 +* Update tested upto version
249 +
33 250 = 2.4 =
34 251 * Update links
35 252
36 253 = 2.3 =
@@ -55,18 +272,4 @@
55 272
56 273 = 1.0 =
57 274 * First Version
58 275
59 -== Upgrade Notice ==
60 -Option to choose the new asynchronous code. This will make the website load faster
61 -
62 -== Configuration ==
63 -
64 -Enter your ID in the field marked 'YOUR VWO ACCOUNT ID'
65 -
66 -== Adding to your template ==
67 -
68 -header code :
69 -`<?php wp_head();?>`
70 -
71 -footer code :
72 -`<?php wp_footer();?>`