-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadmin-about.php
124 lines (102 loc) · 3.87 KB
/
admin-about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?php
/**
* Title: About
*
* Description: Displays list of all CyberChimps theme linking to it's pro and free versions.
*
* Please do not edit this file. This file is part of the CyberChimps Framework and all modifications
* should be made in a child theme.
*
* @category CyberChimps Framework
* @package Framework
* @since 1.0
* @author CyberChimps
* @license http://www.opensource.org/licenses/gpl-license.php GPL v3.0 (or later)
* @link http://www.cyberchimps.com/
*/
// Add stylesheet and JS for upsell page.
function cyberchimps_about_style() {
// Set template directory uri
$directory_uri = get_template_directory_uri();
wp_enqueue_style( 'about_style', get_template_directory_uri() . '/css/about.css' );
}
// Add upsell page to the menu.
function cyberchimps_add_about() {
$page = add_theme_page(
'About Fad',
'About Fad',
'administrator',
'cyberchimps-responsive',
'cyberchimps_display_about'
);
add_action( 'admin_print_styles-' . $page, 'cyberchimps_about_style' );
}
add_action( 'admin_menu', 'cyberchimps_add_about' );
// Define markup for the upsell page.
function cyberchimps_display_about() {
// Set template directory uri
$theme = wp_get_theme();
?>
<div class="about-container">
<div class="about-info">
<h1><?php echo "Fad - ".$theme['Version'] ?></h1>
<?php
$directory_uri = get_template_directory_uri();
?>
<span><img src="<?php echo $directory_uri ?>/images/logo.png"></span>
<?php printf( '<p>A trendy, flat and minimalist style-only theme by CyberChimps, built on the BlankSlate boilerplate. fad is also a super lightweight, fullscreen, responsive CSS framework grid, perfect for web designers and programmers who are learning new design practices.'
); ?>
</div>
<div class="features">
<table class="features-table">
<thead>
<tr>
<th class=""></th>
<th>Fad</th>
<th>Fad Pro</th>
</tr>
<tr>
<td class="feature">Responsive layout <p>Works on every device</p></td>
<td class="featureyes"><span class='dashicons-before dashicons-yes'></span></td>
<td class="featureyes"><span class='dashicons-before dashicons-yes'></span></td>
</tr>
<tr>
<td class="feature">Custom Menus</td>
<td class="featureyes"><span class='dashicons-before dashicons-yes'></span></td>
<td class="featureyes"><span class='dashicons-before dashicons-yes'></span></td>
</tr>
<tr>
<td class="feature">Typography & Fonts
<p>(Supports Google Fonts , option available for changing header & text font)</p></td>
<td class="featureyes"><span class="dashicons-before dashicons-no-alt"></span></td>
<td class="featureno"><span class='dashicons-before dashicons-yes'></span></td>
</tr>
<tr>
<td class="feature">Customizable color for headings and footer text</td>
<td class="featureyes"><span class="dashicons-before dashicons-no-alt"></span></td>
<td class="featureno"><span class='dashicons-before dashicons-yes'></span></td>
</tr>
<tr>
<td class="feature">Customizable footer text</td>
<td class="featureyes"><span class="dashicons-before dashicons-no-alt"></span></td>
<td class="featureno"><span class='dashicons-before dashicons-yes'></span></td>
</tr>
<tr>
<td class="feature">Ready-to-use Color Schemes (Skins)</td>
<td class="featureyes"><span class="dashicons-before dashicons-no-alt"></span></td>
<td class="featureno"><span class='dashicons-before dashicons-yes'></span></td>
</tr>
<tr>
<td class="feature">High Priority Support via Helpdesk</td>
<td class="featureyes"><span class="dashicons-before dashicons-no-alt"></span></td>
<td class="featureno"><span class='dashicons-before dashicons-yes'></span></td>
</tr>
</thead>
</table>
</div>
<div class="buy">
<a class="button button-primary buylink" target="_blank" href="https://cyberchimps.com/store/fadpro/?utm_source=about">Buy Fad Pro</a>
</div>
</div>
<?php
}