PluginProbe ʕ •ᴥ•ʔ
Independent Analytics – WordPress Analytics Plugin / 2.15.5
Independent Analytics – WordPress Analytics Plugin v2.15.5
2.15.5 2.15.4 2.15.3 2.15.2 2.15.1 2.15.0 2.14.10 trunk 1.1 1.10 1.10.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.17.1 1.17.2 1.17.3 1.17.4 1.18 1.18.1 1.19.0 1.19.1 1.2 1.20.0 1.21.0 1.22.0 1.22.1 1.23.0 1.23.1 1.24.0 1.24.1 1.25.0 1.25.1 1.26.0 1.27.0 1.28.0 1.28.1 1.28.2 1.28.3 1.29.0 1.3 1.30.0 1.30.1 1.4 1.5 1.6 1.7 1.8 1.9 2.0.0 2.0.1 2.1.4 2.1.5 2.1.6 2.10.0 2.10.1 2.10.2 2.10.3 2.10.4 2.11.0 2.11.1 2.11.10 2.11.2 2.11.3 2.11.4 2.11.5 2.11.6 2.11.7 2.11.8 2.11.9 2.12.0 2.12.1 2.12.2 2.13.1 2.13.2 2.13.5 2.13.6 2.14.0 2.14.1 2.14.2 2.14.4 2.14.6 2.14.7 2.14.8 2.14.9 2.2.0 2.2.1 2.3.1 2.3.2 2.4.2 2.4.3 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.6.3 2.6.4 2.7.0 2.7.1 2.7.2 2.7.3 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.2 2.9.3 2.9.4 2.9.5 2.9.6 2.9.7
independent-analytics / views / woocommerce-order-meta-box.blade.php
independent-analytics / views Last commit date
click-tracking 1 month ago date-picker 3 weeks ago email 1 month ago examiner 4 months ago icons 1 month ago integrations 1 month ago interrupt 1 month ago journeys 3 weeks ago notices 3 weeks ago overview 1 month ago partials 1 month ago settings 3 weeks ago tables 3 weeks ago campaign-builder.blade.php 3 months ago chart.blade.php 1 year ago debug.blade.php 1 year ago plugin-group-options.blade.php 1 month ago quick-stat-loading.blade.php 1 year ago quick-stat.blade.php 1 month ago quick-stats.blade.php 1 month ago real-time.blade.php 2 weeks ago support.blade.php 7 months ago updates.blade.php 1 month ago woocommerce-order-meta-box.blade.php 3 weeks ago
woocommerce-order-meta-box.blade.php
48 lines
1 <p class="iawp-referrer-box-title"><?php esc_html_e('Time of Arrival', 'independent-analytics'); ?></p>
2 <p class="iawp-referrer-box-value" data-testid="time-of-arrival">{{ $record->arrived_at }}</p>
3
4 <p class="iawp-referrer-box-title"><?php esc_html_e('Referrer', 'independent-analytics'); ?></p>
5 <p class="iawp-referrer-box-value" data-testid="referrer"><?php echo $record->referrer ?></p>
6
7 <?php if (!is_null($record->utm_source)) : ?>
8 <p class="iawp-referrer-box-title"><?php esc_html_e('Campaign Data', 'independent-analytics'); ?></p>
9 <div>
10 <p class="iawp-referrer-box-campaign-value" data-testid="source"><strong><?php esc_html_e('Source:', 'independent-analytics'); ?></strong> <?php echo $record->utm_source ?></p>
11 <p class="iawp-referrer-box-campaign-value" data-testid="medium"><strong><?php esc_html_e('Medium:', 'independent-analytics'); ?></strong> <?php echo $record->utm_medium ?></p>
12 <p class="iawp-referrer-box-campaign-value" data-testid="campaign"><strong><?php esc_html_e('Campaign:', 'independent-analytics'); ?></strong> <?php echo $record->utm_campaign ?></p>
13 <?php if ($record->utm_term) : ?>
14 <p class="iawp-referrer-box-campaign-value" data-testid="term"><strong><?php esc_html_e('Term:', 'independent-analytics'); ?></strong> <?php echo $record->utm_term ?></p>
15 <?php endif; ?>
16 <?php if ($record->utm_content) : ?>
17 <p class="iawp-referrer-box-campaign-value" data-testid="content"><strong><?php esc_html_e('Content:', 'independent-analytics'); ?></strong> <?php echo $record->utm_content ?></p>
18 <?php endif; ?>
19 </div>
20 <?php endif; ?>
21
22 <p class="iawp-referrer-box-title"><?php esc_html_e('Landing Page', 'independent-analytics'); ?></p>
23 <p class="iawp-referrer-box-value" data-testid="landing-page"><a href="<?php echo esc_url($record->initial_page_url); ?>" target="_blank"><?php echo esc_html($record->initial_page_title); ?></a></p>
24
25 <p class="iawp-referrer-box-title"><?php esc_html_e('Pages viewed', 'independent-analytics'); ?></p>
26 <p class="iawp-referrer-box-value" data-testid="pages-viewed"><?php echo $record->total_views ?></p>
27
28 <p class="iawp-referrer-box-title"><?php esc_html_e('Time of Purchase', 'independent-analytics'); ?></p>
29 <p class="iawp-referrer-box-value" data-testid="time-of-purchase">{{ $record->ordered_at }}</p>
30
31 <p class="iawp-referrer-box-title"><?php esc_html_e('Device Data', 'independent-analytics'); ?></p>
32 <p class="iawp-referrer-box-value" data-testid="device-data"><?php echo $record->device_type ?> &bull; <?php echo $record->device_os ?> &bull; <?php echo $record->device_browser ?></p>
33
34 <p class="iawp-referrer-box-title"><?php esc_html_e('Location', 'independent-analytics'); ?></p>
35 <?php if($record->country && $record->city): ?>
36 <p class="iawp-referrer-box-value" data-testid="geolocation"><?php echo $record->country ?> &bull; <?php echo $record->city ?></p>
37 <?php else: ?>
38 <p class="iawp-referrer-box-value" data-testid="geolocation"><?php esc_html_e('Unknown', 'independent-analytics'); ?></p>
39 <?php endif; ?>
40
41 <p class="iawp-view-journey">
42 <a href="<?php echo esc_url($journey_url); ?>"><span class="dashicons dashicons-admin-users"></span> <?php esc_html_e('View full journey', 'independent-analytics'); ?> <span class="iawp-arrow">&rarr;</span></a>
43 </p>
44
45 <p class="iawp-referrer-box-attribution"><?php
46 printf(esc_html__('Powered by %s.', 'independent-analytics'), iawp_is_pro() ? 'Independent Analytics Pro' : 'Independent Analytics');
47 ?></p>
48