
|
Server : Apache System : Linux 182.49.167.72.host.secureserver.net 4.18.0-553.92.1.el8_10.x86_64 #1 SMP Wed Jan 14 06:31:58 EST 2026 x86_64 User : kikai ( 1014) PHP Version : 8.3.30 Disable Function : NONE Directory : /home/kikai/www/wp-content/plugins/hummingbird-performance/admin/modals/ |
Upload File : |
<?php
/**
* Modal window that is shown right after the asset optimization scan is finished.
*
* @since 1.9.2
* @package Hummingbird
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<div class="sui-modal sui-modal-sm">
<div role="dialog" class="sui-modal-content wphb-assets-modal" id="wphb-assets-modal" aria-modal="true" aria-labelledby="assetsFound">
<div class="sui-box">
<div class="sui-box-header sui-flatten sui-content-center sui-spacing-top--40">
<h3 class="sui-box-title sui-lg" id="assetsFound">
<?php
/* translators: %s - number of assets */
printf( esc_html__( '%s assets found', 'wphb' ), 0 );
?>
</h3>
<p class="sui-description">
<?php esc_html_e( 'Next, optimize your file structure by turning on compression, and moving files in order to speed up your page load times.', 'wphb' ); ?>
</p>
</div>
<div class="sui-box-body">
<?php
$this->admin_notices->show_inline(
esc_html__( 'This is an advanced feature and can break themes easily. We recommend modifying each file individually and checking your frontend regularly for issues.', 'wphb' ),
'warning'
);
?>
<div class="sui-block-content-center">
<button class="sui-button" onclick="WPHB_Admin.minification.goToSettings()">
<?php esc_html_e( 'Got It', 'wphb' ); ?>
</button>
</div>
</div>
</div>
</div>
</div>