Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattpiwik <matthieu.aubry@gmail.com>2011-05-31 10:33:52 +0400
committermattpiwik <matthieu.aubry@gmail.com>2011-05-31 10:33:52 +0400
commitdea3812ebf5bb76d9559029060e6fe8b36e2b236 (patch)
tree3cd700cc75f1df602d7f27b271229aa725bf53b3 /plugins/Live/templates
parent66ceca7ed6e81e7b9742d79fe6c7c2b6cae8cf87 (diff)
Refs #898
* Adding new icons to switch between Ecommerce orders/Carts below the table reports "Top Product Sku/name/category" * Adding column "Ecommerce conversion rate" like other goals, when clicking on "Goal icon" on any report outside of "Ecommerce & Goals" section * Confirmed that "Revenue per visit" always includes "Ecommerce revenue" as well (but not "Abandoned Cart revenue" since it is not revenue but "potential revenue/loss" * Ecommerce Order logs renamed to Ecommerce Log, which now shows Orders & Abandoned Carts logs as well * git-svn-id: http://dev.piwik.org/svn/trunk@4845 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/Live/templates')
-rw-r--r--plugins/Live/templates/visitorLog.tpl6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/Live/templates/visitorLog.tpl b/plugins/Live/templates/visitorLog.tpl
index a26cdf88d6..de59aa69e9 100644
--- a/plugins/Live/templates/visitorLog.tpl
+++ b/plugins/Live/templates/visitorLog.tpl
@@ -1,6 +1,6 @@
<div id="{$properties.uniqueId}" class="visitorLog">
{if !$isWidget}
- <h2>{if $javascriptVariablesToSet.filterEcommerce}{'Goals_EcommerceOrdersLog'|translate}{else}{'Live_VisitorLog'|translate}{/if}</h2>
+ <h2>{if $javascriptVariablesToSet.filterEcommerce}{'Goals_EcommerceLog'|translate}{else}{'Live_VisitorLog'|translate}{/if}</h2>
{if !empty($reportDocumentation)}
<div class="reportDocumentation"><p>{$reportDocumentation}</p></div>
@@ -164,7 +164,9 @@
{/foreach}
{/if}
{/capture}
- {if !$javascriptVariablesToSet.filterEcommerce || $action.type == 'ecommerceOrder'}
+ {if !$javascriptVariablesToSet.filterEcommerce
+ || $action.type == 'ecommerceOrder'
+ || $action.type == 'ecommerceAbandonedCart'}
<li class="{if !empty($action.goalName)}goal{else}action{/if}" title="{$action.serverTimePretty|escape:'html'}{if !empty($action.url) && strlen(trim($action.url))} - {$action.url|escape:'html'}{/if} {if strlen(trim($customVariablesTooltip))} - {$customVariablesTooltip}{/if}">
{if $action.type == 'ecommerceOrder' || $action.type == 'ecommerceAbandonedCart'}
{* Ecommerce Abandoned Cart / Ecommerce Order *}