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 ?> • <?php echo $record->device_os ?> • <?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 ?> • <?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">→</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 |