Version Notes
Added support for Firecheckout
Download this release
Release Info
Developer | Stetic |
Extension | Stetic_Ecommerce_Analytics |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
- README.md +0 -34
- app/code/community/Stetic/Analytics/Block/Tracker.php +5 -1
- app/code/community/Stetic/Analytics/Model/Observer.php +1 -0
- app/code/community/Stetic/Analytics/etc/config.xml +0 -0
- app/design/frontend/base/default/layout/stetic.xml +0 -0
- app/design/frontend/base/default/template/stetic/tracker.phtml +0 -0
- app/etc/modules/Stetic_Analytics.xml +0 -0
- package.xml +54 -44
README.md
DELETED
@@ -1,34 +0,0 @@
|
|
1 |
-
# Stetic Magento Extension
|
2 |
-
|
3 |
-
With this extension you can add the powerful Web and Ecommerce Analytics from Stetic to your Magento store.
|
4 |
-
It will integrate the tracking code to track pageviews and all actions a visitor or customer will take.
|
5 |
-
Logged-in users will be identified and pushed to Stetic for further analysis.
|
6 |
-
You can enable or disable all individual events in the extension settings.
|
7 |
-
|
8 |
-
## Installation
|
9 |
-
|
10 |
-
Just copy the app folder to your Magento root folder. Alternatively you can do a direct package file upload in your Magento Connect Manager.
|
11 |
-
|
12 |
-
|
13 |
-
### Event Tracking - List of actions tracked
|
14 |
-
|
15 |
-
The following actions can be tracked with this extension:
|
16 |
-
|
17 |
-
- Shopping Cart actions
|
18 |
-
- Orders
|
19 |
-
- Wishlist actions
|
20 |
-
- Send Friend
|
21 |
-
- Search
|
22 |
-
- Contact form
|
23 |
-
- Newsletter
|
24 |
-
- Product review
|
25 |
-
- Product compare
|
26 |
-
- Account creation
|
27 |
-
- Login and Logout
|
28 |
-
- Account actions
|
29 |
-
- Forgot Password
|
30 |
-
- 404 page Not Found
|
31 |
-
|
32 |
-
|
33 |
-
Note: You have to be registered with Stetic to use this extension.
|
34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/Stetic/Analytics/Block/Tracker.php
CHANGED
@@ -289,7 +289,11 @@ class Stetic_Analytics_Block_Tracker extends Mage_Core_Block_Template
|
|
289 |
/***
|
290 |
* Checkout success
|
291 |
*/
|
292 |
-
elseif( ($action == 'checkout_onepage_saveOrder' ||
|
|
|
|
|
|
|
|
|
293 |
{
|
294 |
$orderIds = array();
|
295 |
/***
|
289 |
/***
|
290 |
* Checkout success
|
291 |
*/
|
292 |
+
elseif( ($action == 'checkout_onepage_saveOrder' ||
|
293 |
+
$action == 'checkout_onepage_savePayment' ||
|
294 |
+
$action == 'checkout_multishipping_success' ||
|
295 |
+
$action == 'checkoutMultishippingControllerSuccessAction' ||
|
296 |
+
$action == 'firecheckout_index_saveOrder') && $this->isOrderTrackingEnabled() )
|
297 |
{
|
298 |
$orderIds = array();
|
299 |
/***
|
app/code/community/Stetic/Analytics/Model/Observer.php
CHANGED
@@ -23,6 +23,7 @@ class Stetic_Analytics_Model_Observer extends Varien_Event_Observer
|
|
23 |
"checkout_onepage_index",
|
24 |
"checkout_onepage_savePayment",
|
25 |
"checkout_onepage_saveOrder",
|
|
|
26 |
"checkout_multishipping_success",
|
27 |
"sales_order_reorder",
|
28 |
"sales_order_print",
|
23 |
"checkout_onepage_index",
|
24 |
"checkout_onepage_savePayment",
|
25 |
"checkout_onepage_saveOrder",
|
26 |
+
"firecheckout_index_saveOrder",
|
27 |
"checkout_multishipping_success",
|
28 |
"sales_order_reorder",
|
29 |
"sales_order_print",
|
app/code/community/Stetic/Analytics/etc/config.xml
CHANGED
File without changes
|
app/design/frontend/base/default/layout/stetic.xml
CHANGED
File without changes
|
app/design/frontend/base/default/template/stetic/tracker.phtml
CHANGED
File without changes
|
app/etc/modules/Stetic_Analytics.xml
CHANGED
File without changes
|
package.xml
CHANGED
@@ -1,58 +1,68 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Stetic_Ecommerce_Analytics</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>Adds real-time Web & Ecommerce Analytics from Stetic with event tracking of all important actions to Magento.</summary>
|
10 |
-
<description>With this
|
11 |
It will integrate the tracking code to track pageviews and all actions a visitor or customer will take. Logged-in users will be identified and pushed to Stetic for further analysis.
|
12 |
-
You can enable or disable all individual events in the extension settings.<br
|
13 |
-
<br
|
14 |
-
Stetic offers a stunning Ecommerce dashboard to monitor the performance of your online store with all important numbers at a glance. <br
|
15 |

|
16 |
-
<br
|
17 |
-
<
|
18 |
-
<
|
19 |
-
|
20 |
-
<
|
21 |
-
<
|
22 |
-
|
23 |
-
<
|
24 |
-
<
|
25 |
-
|
26 |
-
<
|
27 |
-
<
|
28 |
-
<br
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
..and many more features.
|
30 |
-
<br
|
31 |
-
<br
|
32 |
-
Event Tracking -
|
33 |
-
|
34 |
-
|
35 |
-
-
|
36 |
-
-
|
37 |
-
-
|
38 |
-
-
|
39 |
-
-
|
40 |
-
-
|
41 |
-
-
|
42 |
-
-
|
43 |
-
-
|
44 |
-
- Account
|
45 |
-
-
|
46 |
-
-
|
47 |
-
<br
|
48 |
-
<br
|
49 |
-
|
50 |
-
|
51 |
-
|
|
|
|
|
52 |
<authors><author><name>Stetic</name><user>stetic</user><email>hello@stetic.com</email></author></authors>
|
53 |
-
<date>
|
54 |
-
<time>
|
55 |
-
<contents><target name="magecommunity"><dir name="Stetic"><dir name="Analytics"><dir name="Block"><file name="Tracker.php" hash="
|
56 |
<compatible/>
|
57 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
58 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Stetic_Ecommerce_Analytics</name>
|
4 |
+
<version>1.0.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>Adds real-time Web &amp; Ecommerce Analytics from Stetic with event tracking of all important actions to Magento.</summary>
|
10 |
+
<description>With this extension you can add the powerful Web and Ecommerce Analytics from <a href="https://www.stetic.com/?fs_campaign=Magento&amp;fs_source=Extensions&amp;fs_medium=link">Stetic</a> to your Magento store. 
|
11 |
It will integrate the tracking code to track pageviews and all actions a visitor or customer will take. Logged-in users will be identified and pushed to Stetic for further analysis.
|
12 |
+
You can enable or disable all individual events in the extension settings.<br />
|
13 |
+
<br />
|
14 |
+
Stetic offers a stunning Ecommerce dashboard to monitor the performance of your online store with all important numbers at a glance. <br />
|
15 |

|
16 |
+
<br />
|
17 |
+
<h3>Ecommerce Dashboard</h3>
|
18 |
+
<p>
|
19 |
+
<a href="https://www.stetic.com/ecommerce/?fs_campaign=Magento&amp;fs_source=Extensions&amp;fs_medium=link"><img src="https://www.stetic.com/img/features/ecommerce/dashboard_en.png" alt="Ecommerce Dashboard" /></a>
|
20 |
+
</p>
|
21 |
+
<br />
|
22 |
+
Learn how successful your shopping cart is.<br />
|
23 |
+
<br />
|
24 |
+
<a href="https://www.stetic.com/ecommerce/?fs_campaign=Magento&amp;fs_source=Extensions&amp;fs_medium=link"><img src="https://www.stetic.com/img/features/ecommerce/cart_1_en.png" alt="Shopping cart Abandonment Rate" /></a><br />
|
25 |
+
<br />
|
26 |
+
<a href="https://www.stetic.com/ecommerce/?fs_campaign=Magento&amp;fs_source=Extensions&amp;fs_medium=link"><img src="https://www.stetic.com/img/features/ecommerce/cart_2_en.png" alt="Time to cart and time to order" /></a><br />
|
27 |
+
<br />
|
28 |
+
<br />
|
29 |
+
<br />
|
30 |
+
<h3>Customer Profiles</h3>
|
31 |
+
<p>
|
32 |
+
- instead of visitors and sessions. Connect your magento customers with your web analytics.<br />
|
33 |
+
<br />
|
34 |
+
<a href="https://www.stetic.com/ecommerce/?fs_campaign=Magento&amp;fs_source=Extensions&amp;fs_medium=link"><img src="https://www.stetic.com/img/features/ecommerce/user-profile_en.png" alt="Time to cart and time to order" /></a><br />
|
35 |
+
</p>
|
36 |
+
<br />
|
37 |
..and many more features.
|
38 |
+
<br />
|
39 |
+
<br />
|
40 |
+
<h3>Event Tracking - List of actions tracked</h3>
|
41 |
+
<p>
|
42 |
+
The following actions can be tracked with this extension:<br />
|
43 |
+
- Shopping Cart actions<br />
|
44 |
+
- Orders<br />
|
45 |
+
- Wishlist actions<br />
|
46 |
+
- Send Friend<br />
|
47 |
+
- Search<br />
|
48 |
+
- Contact form<br />
|
49 |
+
- Newsletter<br />
|
50 |
+
- Product review<br />
|
51 |
+
- Product compare<br />
|
52 |
+
- Account creation<br />
|
53 |
+
- Login and Logout<br />
|
54 |
+
- Account actions<br />
|
55 |
+
- Forgot Password<br />
|
56 |
+
- 404 page Not Found<br />
|
57 |
+
</p>
|
58 |
+
<br />
|
59 |
+
<br />
|
60 |
+
Note: You have to be registered with <a href="https://www.stetic.com/?fs_campaign=Magento&amp;fs_source=Extensions&amp;fs_medium=link">Stetic</a> to use this extension.</description>
|
61 |
+
<notes>Added support for Firecheckout</notes>
|
62 |
<authors><author><name>Stetic</name><user>stetic</user><email>hello@stetic.com</email></author></authors>
|
63 |
+
<date>2016-01-26</date>
|
64 |
+
<time>16:02:09</time>
|
65 |
+
<contents><target name="magecommunity"><dir name="Stetic"><dir name="Analytics"><dir name="Block"><file name="Tracker.php" hash="615fb5b2597d706e337736b0b30fbc2e"/></dir><dir name="Helper"><file name="Data.php" hash="27026fd1fc808957990cdf61d3f40546"/></dir><dir name="Model"><file name="Observer.php" hash="69e2315d07a926a53bdc5c46804b5a6c"/></dir><dir name="etc"><file name="config.xml" hash="e14bbc66c6cda199f9b8860bec47c6c2"/><file name="system.xml" hash="88c02ff7dbcaddab259f14cb657c0395"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="stetic"><file name="onepage.phtml" hash="584772b48c2b868fba0aa4efc1fdf92c"/><file name="tracker.phtml" hash="9f89660d790cf7f4f2c6248a7d02b874"/></dir></dir><dir name="layout"><file name="stetic.xml" hash="8d83bec15d00c5d090ad99a765ce574f"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Stetic_Analytics.xml" hash="6452040fe0a72ee45695013a3796f271"/></dir></target></contents>
|
66 |
<compatible/>
|
67 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
68 |
</package>
|