PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 2.4.1
ShareThis Dashboard for Google Analytics v2.4.1
3.3.2 trunk 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.5 2.3.5 2.3.6 2.3.7 2.3.8 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.0.0 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1
googleanalytics / view / templates / demographic-chart.php
googleanalytics / view / templates Last commit date
appearance.php 5 years ago demographic-chart.php 5 years ago demographic.php 5 years ago exclusions.php 5 years ago gdpr-config.php 5 years ago gdpr.php 5 years ago purposes.php 5 years ago
demographic-chart.php
47 lines
1 <?php if(!$demo_enabled) : ?>
2 <div class="demo-ad ga-panel ga-panel-default">
3 <div class="ga-panel-heading">
4 <strong>
5 <?php esc_html_e('Get Demographic Data!'); ?>
6 <button id="demographic-popup">Click Here To Enable</button>
7 </strong>
8 </div>
9 <img src="<?php echo trailingslashit(get_home_url()) . 'wp-content/plugins/googleanalytics/assets/images/demo-ad.png'; ?>" />
10 </div>
11 <?php else: ?>
12 <div class="filter-choices">
13 <a href="<?php echo get_admin_url('', $seven_url ); ?>" class="<?php echo esc_attr( $selected7 ); ?>">
14 7 days
15 </a>
16 <a href="<?php echo get_admin_url('', $thirty_url ); ?>" class="<?php echo esc_attr( $selected30 ); ?>">
17 30 days
18 </a>
19 </div>
20 <div class="demo-ad ga-panel ga-panel-default">
21 <div class="ga-panel-heading">
22 <strong>
23 <?php esc_html_e('Demographic by sessions'); ?>
24 </strong>
25 </div>
26 <div class="ga-demo-chart">
27 <div class="ga-panel-body ga-chart gender">
28 <div id="demo_chart_gender_div" style="width: 100%;"></div>
29 <div class="ga-loader-wrapper stats-page">
30 <div class="ga-loader stats-page-loader"></div>
31 </div>
32 </div>
33 <div class="ga-panel-body ga-chart gender">
34 <div id="demo_chart_age_div" style="width: 100%;"></div>
35 <div class="ga-loader-wrapper stats-page">
36 <div class="ga-loader stats-page-loader"></div>
37 </div>
38 </div>
39 </div>
40 </div>
41 <a href="<?php echo esc_url( $demographic_page_url ); ?>/" class="view-report" target="_blank">
42 <?php echo esc_html__('View Full Report' ); ?>
43 </a>
44 <hr>
45 <?php
46 endif;
47