PluginProbe
Testimonial Customer Feedback / trunk
Testimonial Customer Feedback vtrunk
1.2.8 1.2.7 1.1.14 1.1.15 1.1.16 1.1.17 1.1.18 1.1.19 1.1.2 1.1.20 1.1.21 1.1.22 1.1.23 1.1.24 1.1.25 1.1.26 1.1.27 1.1.28 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 All 76 releases
testimonial-maker / include / analytics.php

analytics.php in Testimonial Customer Feedback trunk, at include/analytics.php

56 lines 4.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Analytics Page Callback Layout
4 */
5 if ( ! defined( 'ABSPATH' ) ) {
6 exit; // Exit if accessed directly.
7 }
8 ?>
9 <div class="wrap" style="background:#fff; padding:30px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif; position: relative; max-width: 1200px; margin-top: 20px; border-radius: 8px; border: 1px solid #ccd0d4; box-shadow: 0 1px 3px rgba(0,0,0,0.05); overflow: hidden;">
10
11 <!-- Small Alert Banner at the Top -->
12 <div style="background: #eff6ff; border: 1px solid #bfdbfe; color: #1e3a8a; padding: 15px; border-radius: 6px; margin-bottom: 25px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px;">
13 <div>
14 <h4 style="margin: 0 0 5px 0; font-size: 16px; font-weight: 600;"><?php esc_html_e('Unlock Analytics & Conversion Tracking �
15 ', 'testimonial-maker'); ?></h4>
16 <p style="margin: 0; font-size: 13px; color: #1e40af;"><?php esc_html_e('Upgrade to Testimonial Premium to monitor views, link clicks, CTR, and submission conversions.', 'testimonial-maker'); ?></p>
17 </div>
18 <a href="https://awplife.com/wordpress-plugins/testimonial-wordpress-plugin/" target="_blank" class="button button-primary" style="background: #d63638; border-color: #d63638; font-weight: 600; text-decoration: none; color: #fff; padding: 4px 12px; border-radius: 4px; display: inline-block; font-size: 13px;"><?php esc_html_e('Get PRO Version', 'testimonial-maker'); ?></a>
19 </div>
20
21 <!-- Main Content Wrapper that will be blurred -->
22 <div style="filter: blur(4px); pointer-events: none; user-select: none; opacity: 0.6;">
23 <h1 style="color:#0f172a; margin-top:0; font-size:28px; font-weight: 700; margin-bottom: 8px;"><?php esc_html_e('Analytics & Statistics', 'testimonial-maker'); ?></h1>
24 <p style="color: #64748b; font-size: 14px; margin-top: 0; margin-bottom: 30px;"><?php esc_html_e('Track views, clicks, CTR, and submission rates of your testimonials in real-time.', 'testimonial-maker'); ?></p>
25
26 <!-- Stats Cards Mock -->
27 <div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 30px;">
28 <div style="border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; background: #f8fafc; position: relative;">
29 <span style="font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase;"><?php esc_html_e('Impressions', 'testimonial-maker'); ?></span>
30 <span style="display: block; font-size: 28px; font-weight: 700; color: #0f172a; margin-top: 8px;">24,850</span>
31 </div>
32 <div style="border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; background: #f8fafc; position: relative;">
33 <span style="font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase;"><?php esc_html_e('Clicks', 'testimonial-maker'); ?></span>
34 <span style="display: block; font-size: 28px; font-weight: 700; color: #0f172a; margin-top: 8px;">1,290</span>
35 </div>
36 <div style="border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; background: #f8fafc; position: relative;">
37 <span style="font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase;"><?php esc_html_e('CTR (Average)', 'testimonial-maker'); ?></span>
38 <span style="display: block; font-size: 28px; font-weight: 700; color: #0f172a; margin-top: 8px;">5.19%</span>
39 </div>
40 <div style="border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; background: #f8fafc; position: relative;">
41 <span style="font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase;"><?php esc_html_e('Submissions', 'testimonial-maker'); ?></span>
42 <span style="display: block; font-size: 28px; font-weight: 700; color: #0f172a; margin-top: 8px;">184</span>
43 </div>
44 </div>
45
46 <!-- Visual Graph Mock -->
47 <div style="border: 1px solid #e2e8f0; border-radius: 12px; padding: 40px; background: #f8fafc; text-align: center; min-height: 250px; display: flex; flex-direction: column; justify-content: center; align-items: center;">
48 <span style="font-size: 48px; color: #94a3b8; margin-bottom: 15px;">📈</span>
49 <h3 style="font-size: 18px; font-weight: 700; color: #334155; margin: 0 0 8px 0;"><?php esc_html_e('Interactive Performance Chart', 'testimonial-maker'); ?></h3>
50 <p style="font-size: 13.5px; color: #64748b; margin: 0; max-width: 450px; line-height: 1.6;">
51 <?php esc_html_e('Monitor conversion trends, compare metrics, and optimize your testimonials with filterable analytics reports.', 'testimonial-maker'); ?>
52 </p>
53 </div>
54 </div>
55 </div>
56