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
|
<?php /** * Dashboard page * * @package Hummingbird */
use Hummingbird\Core\Utils;
if ( ! defined( 'ABSPATH' ) ) { exit; }
$this->do_meta_boxes( 'main' ); ?>
<div class="sui-row"> <div class="sui-col-lg-6"><?php $this->do_meta_boxes( 'box-dashboard-left' ); ?></div> <div class="sui-col-lg-6"><?php $this->do_meta_boxes( 'box-dashboard-right' ); ?></div> </div>
<?php if ( ! \Hummingbird\Core\Utils::is_member() ) : ?> <div class="sui-row" id="sui-cross-sell-footer"> <div><span class="sui-icon-plugin-2"></span></div> <h3><?php esc_html_e( 'Check out our other free wordpress.org plugins!', 'wphb' ); ?></h3> </div> <div class="sui-row sui-cross-sell-modules"> <div class="sui-col-md-4"> <!-- Cross-Sell Banner #1 --> <div aria-hidden="true" class="sui-cross-1"> <span></span> </div>
<div class="sui-box"> <div class="sui-box-body"> <h3><?php esc_html_e( 'Smush Image Compression and Optimization', 'wphb' ); ?></h3> <p><?php esc_html_e( 'Resize, optimize and compress all of your images with the incredibly powerful and award-winning, 100% free WordPress image optimizer.', 'wphb' ); ?></p> <a href="https://wordpress.org/plugins/wp-smushit/" class="sui-button sui-button-ghost" target="_blank"> <?php esc_html_e( 'View features', 'wphb' ); ?> <i aria-hidden="true" class="sui-icon-arrow-right"></i> </a> </div> </div> </div>
<div class="sui-col-md-4"> <!-- Cross-Sell Banner #2 --> <div aria-hidden="true" class="sui-cross-2"> <span></span> </div>
<div class="sui-box"> <div class="sui-box-body"> <h3><?php esc_html_e( 'Defender Security, Monitoring, and Hack Protection', 'wphb' ); ?></h3> <p><?php esc_html_e( 'Security Tweaks & Recommendations, File & Malware Scanning, Login & 404 Lockout Protection, Two-Factor Authentication & more.', 'wphb' ); ?></p> <a href="https://wordpress.org/plugins/defender-security/" class="sui-button sui-button-ghost" target="_blank"> <?php esc_html_e( 'View features', 'wphb' ); ?> <i aria-hidden="true" class="sui-icon-arrow-right"></i> </a> </div> </div> </div>
<div class="sui-col-md-4"> <!-- Cross-Sell Banner #3 --> <div aria-hidden="true" class="sui-cross-3"> <span></span> </div>
<div class="sui-box"> <div class="sui-box-body"> <h3><?php esc_html_e( 'SmartCrawl Search Engine Optimization', 'wphb' ); ?></h3> <p><?php esc_html_e( 'Customize Titles & Meta Data, OpenGraph, Twitter & Pinterest Support, Auto-Keyword Linking, SEO & Readability Analysis, Sitemaps, URL Crawler & more.', 'wphb' ); ?></p> <a href="https://wordpress.org/plugins/smartcrawl-seo/" class="sui-button sui-button-ghost" target="_blank"> <?php esc_html_e( 'View features', 'wphb' ); ?> <i aria-hidden="true" class="sui-icon-arrow-right"></i> </a> </div> </div> </div> </div> <div class="sui-cross-sell-bottom"> <h3><?php esc_html_e( 'Your All-in-One WordPress Platform', 'wphb' ); ?></h3> <p><?php esc_html_e( 'Pretty much everything you need for developing and managing WordPress based websites, and then some.', 'wphb' ); ?></p>
<a class="sui-button sui-button-green" href="<?php echo esc_url( Utils::get_link( 'wpmudev', 'hummingbird_footer_upgrade_button' ) ); ?>" target="_blank"> <?php esc_html_e( 'Learn more', 'wphb' ); ?> </a>
<img class="sui-image" src="<?php echo esc_url( WPHB_DIR_URL . 'admin/assets/image/dev-team.png' ); ?>" srcset="<?php echo esc_url( WPHB_DIR_URL . 'admin/assets/image/dev-team@2x.png' ); ?> 2x" alt="<?php esc_attr_e( 'Try pro features for free!', 'wphb' ); ?>"> </div> <?php endif; ?>
<script> jQuery( document).ready( function () { window.WPHB_Admin.getModule( 'dashboard' ); }); </script>
|