PluginProbe
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) / 1.0.3
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) v1.0.3
9.1.2 9.1.1 9.1.0 9.0.2 9.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3.0 1.3.1 1.3.2 All 153 releases
wp-analytify / views / admin / mobile-stats.php

mobile-stats.php in Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) 1.0.3, at views/admin/mobile-stats.php

35 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 //
3 function pa_include_mobile( $current, $mobile_stats ) {
4
5 ?>
6 <div class="data_boxes">
7 <div class="data_boxes_title "><?php echo _e( 'Mobile Devices Statistics', 'wp-analytify'); ?> <div class="arrow_btn"></div></div>
8 <div class="data_container">
9 <?php
10 if (! empty( $mobile_stats["rows"] ) ) { ?>
11 <div class="names_grids">
12 <?php foreach ($mobile_stats["rows"] as $m_stats){ ?>
13 <div class="stats">
14 <div class="row-visits">
15 <span class="large-count"><?php echo $current->wpa_number_format( $m_stats[1] ); ?></span>
16 Visits
17 </div>
18 <div class="visits-count">
19 <i><?php echo $m_stats[0];?> </i>
20 </div>
21 </div>
22 <?php } ?>
23
24 </div>
25 <?php } ?>
26 </div>
27 <div class="data_boxes_footer">
28 <span class="blk">
29 <span class="dot"></span>
30 <span class="line"></span>
31 </span>
32 <span class="information-txt">Listing statistics of Mobile usage.</span>
33 </div>
34 </div>
35 <?php } ?>