click-tracking
11 months ago
date-picker
5 months ago
email
9 months ago
examiner
11 months ago
icons
6 months ago
integrations
11 months ago
interrupt
11 months ago
journeys
6 months ago
notices
6 months ago
overview
6 months ago
partials
5 months ago
settings
5 months ago
tables
6 months ago
campaign-builder.blade.php
11 months ago
chart.blade.php
11 months ago
debug.blade.php
11 months ago
plugin-group-options.blade.php
11 months ago
quick-stat-loading.blade.php
11 months ago
quick-stat.blade.php
5 months ago
quick-stats.blade.php
11 months ago
real-time.blade.php
6 months ago
support.blade.php
6 months ago
updates.blade.php
6 months ago
woocommerce-order-meta-box.blade.php
6 months ago
debug.blade.php
14 lines
| 1 | <div> |
| 2 | <h1>Independent Analytics Debugging</h1> |
| 3 | <section class="settings-container"> |
| 4 | <h2>IP Address Debugging</h2> |
| 5 | <div class="ip-addresses"> |
| 6 | <p <?php echo $detected_ip ? "" : 'class=empty'; ?>><span>Detected IP:</span> <span><?php echo esc_html($detected_ip); ?></span></p> |
| 7 | <p <?php echo $custom_ip_header ? "" : 'class=empty'; ?>><span>Custom IP header:</span> <span><?php echo esc_html($custom_ip_header); ?></span></p> |
| 8 | <?php foreach($header_details as $detail) : ?> |
| 9 | <p <?php echo $detail[1] ? "" : 'class=empty'; ?>><span><?php echo esc_html($detail[0]); ?>:</span> <span><?php echo esc_html($detail[1]); ?></span></p> |
| 10 | <?php endforeach; ?> |
| 11 | </div> |
| 12 | </section> |
| 13 | </div> |
| 14 |