Server IP : 63.250.38.98 / Your IP : 216.73.216.235 Web Server : LiteSpeed System : Linux premium291.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 User : samejjip ( 1289) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/samejjip/www/wp-content/plugins/pixelyoursite/includes/enrich/views/ |
Upload File : |
<?php include_once "function-helper.php"; use function PixelYourSite\PYS; $payment = new EDD_Payment( $payment_id ); if(!PYS()->getOption('edd_enabled_display_data_to_orders') || !isset($payment)) return; $meta = $payment->get_meta(); ?> <style> table.pys_order_meta { width: 100%;text-align:left } table.pys_order_meta td.border span { border-top: 1px solid #f1f1f1; display: block; } table.pys_order_meta th, table.pys_order_meta td { padding:10px } </style> <div class="inside"> <?php if(isset($meta['pys_enrich_data'])) : $data = $meta['pys_enrich_data']; ?> <table class="pys_order_meta"> <tr> <td colspan="2" ><strong>FIRST VISIT</strong></td> </tr> <tr> <td colspan="2" class="border"><span></span></td> </tr> <tr > <th>Landing Page:</th> <?php $landingPage = !empty($data['pys_landing']) ? $data['pys_landing'] : "No Landing Page"; if (filter_var($landingPage, FILTER_VALIDATE_URL)) { echo '<td><a href="' . $landingPage . '" target="_blank">' . $landingPage . '</a></td>'; } else { echo '<td>' . $landingPage . '</td>'; } ?> </tr> <tr> <th>Traffic source:</th> <td><?=!empty($data['pys_source']) ? $data['pys_source'] : "No Traffic source"?></td> </tr> <?php $utms = explode("|",$data['pys_utm']); \PixelYourSite\Enrich\printUtm($utms); ?> <tr> <td colspan="2" class="border"><span></span></td> </tr> <tr> <td colspan="2" ><strong>LAST VISIT</strong></td> </tr> <tr> <td colspan="2" class="border"><span></span></td> </tr> <tr > <th>Landing Page:</th> <?php $lastLanding = !empty($data['last_pys_landing']) ? $data['last_pys_landing'] : "No Landing Page"; if (filter_var($lastLanding, FILTER_VALIDATE_URL)) { echo '<td><a href="' . $lastLanding . '" target="_blank">' . $lastLanding . '</a></td>'; } else { echo '<td>' . $lastLanding . '</td>'; } ?> </tr> <tr> <th>Traffic source:</th> <td><?=!empty($data['last_pys_source']) ? $data['last_pys_source'] : "No Traffic source"?></td> </tr> <?php if(!empty($data['last_pys_utm'])) { $utms = explode("|",$data['last_pys_utm']); \PixelYourSite\Enrich\printUtm($utms); } ?> <tr> <td colspan="2" class="border"><span></span></td> </tr> <?php $userTime = explode("|",$data['pys_browser_time']); ?> <tr > <th>Client's browser time</th> <td></td> </tr> <tr > <th>Hour:</th> <td><?=$userTime[0]; ?></td> </tr> <tr > <th>Day:</th> <td><?=$userTime[1]; ?></td> </tr> <tr > <th>Month:</th> <td><?=$userTime[2]; ?></td> </tr> <tr> <td colspan="2" class="border"<td><span></span></td> </tr> </table> <?php else: ?> <h2>No data</h2> <?php endif; ?> </div>