PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.11.14
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.11.14
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 3.10.4 All 148 releases
visualizer / templates / support.php

support.php in Visualizer – Tables & Charts Manager with Built-in AI Generator 3.11.14, at templates/support.php

58 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div id="viz-features" class="viz-settings">
2
3 <?php
4 $active_tab = isset( $_REQUEST['tab'] ) ? sanitize_text_field( $_REQUEST['tab'] ) : 'help';
5 $show_more = ! apply_filters( 'visualizer_is_business', false );
6 ?>
7
8 <div class="pro-features-header">
9 <p class="logo">Visualizer: Tables and Charts Manager for WordPress</p>
10 <span class="slogan">by <a
11 href="https://themeisle.com/">ThemeIsle</a></span>
12 <div class="header-btns">
13 <?php if ( $show_more ) { ?>
14 <a target="_blank" href="<?php echo tsdk_utmify( Visualizer_Plugin::PRO_TEASER_URL, 'supportheader' ); ?>" class="buy-now"><span
15 class="dashicons dashicons-cart"></span>More features</a>
16 <?php } ?>
17 </div>
18 <div class="clear"></div>
19 </div>
20
21
22 <h2 class="nav-tab-wrapper">
23 <a href="<?php echo esc_url( admin_url( 'admin.php?page=viz-support&tab=help' ) ); ?>"
24 class="nav-tab <?php echo $active_tab === 'help' ? 'nav-tab-active' : ''; ?>"><?php _e( 'Support', 'visualizer' ); ?></a>
25 <?php
26 if ( $show_more ) {
27 ?>
28 <a href="<?php echo esc_url( admin_url( 'admin.php?page=viz-support&tab=more' ) ); ?>"
29 class="nav-tab <?php echo $active_tab === 'more' ? 'nav-tab-active' : ''; ?>"><?php _e( 'More Features', 'visualizer' ); ?></a>
30 <?php
31 }
32 ?>
33 <a href="<?php echo esc_url( admin_url( 'admin.php?page=viz-support&tab=improve' ) ); ?>"
34 class="nav-tab <?php echo $active_tab === 'improve' ? 'nav-tab-active' : ''; ?>"><?php _e( 'Help us improve!', 'visualizer' ); ?></a>
35 </h2>
36
37 <div class="viz-features-content">
38 <div class="viz-feature">
39 <div class="viz-feature-features">
40 <?php
41 switch ( $active_tab ) {
42 case 'help':
43 include_once VISUALIZER_ABSPATH . '/templates/docs.php';
44 break;
45 case 'more':
46 include_once VISUALIZER_ABSPATH . '/templates/more.php';
47 break;
48 case 'improve':
49 include_once VISUALIZER_ABSPATH . '/templates/improve.php';
50 break;
51 }
52 ?>
53 </div>
54 </div>
55 </div>
56
57 </div>
58