| Server IP : 89.248.107.232 / Your IP : 216.73.217.70 Web Server : Apache System : Linux host2.kasilh.com 5.14.0-687.36.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 7 05:40:49 EDT 2026 x86_64 User : seg ( 10005) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/seg-sa.es/grupo-seg.com/wp-content/plugins/wp-smushit/app/modals/ |
Upload File : |
<?php
/**
* Show Updated Features modal.
*
* @package WP_Smush
*
* @since 3.7.0
*
* @var string $cta_url URL for the modal's CTA button.
*/
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<div class="sui-modal sui-modal-md">
<div
role="dialog"
id="smush-updated-dialog"
class="sui-modal-content smush-updated-dialog wp-smush-modal-dark-background"
aria-modal="true"
data-esc-close="false"
aria-labelledby="smush-title-updated-dialog"
>
<div class="sui-box">
<div class="sui-box-header sui-flatten sui-content-center sui-spacing-sides--20">
<figure class="sui-box-banner" aria-hidden="true">
<img src="<?php echo esc_url( WP_SMUSH_URL . 'app/assets/images/updated/updated.png' ); ?>"
srcset="<?php echo esc_url( WP_SMUSH_URL . 'app/assets/images/updated/updated.png' ); ?> 1x, <?php echo esc_url( WP_SMUSH_URL . 'app/assets/images/updated/updated' ); ?>@2x.png 2x"
alt="<?php esc_attr_e( 'Smush Updated Modal', 'wp-smushit' ); ?>" class="sui-image sui-image-center">
</figure>
<button class="sui-button-icon sui-button-float--right sui-button-grey" style="box-shadow:none!important" onclick="WP_Smush.onboarding.hideUpgradeModal(event, this)">
<i class="sui-icon-close sui-md" aria-hidden="true"></i>
</button>
</div>
<div class="sui-box-body sui-content-center sui-spacing-sides--30 sui-spacing-top--30 sui-spacing-bottom--50">
<h3 class="sui-box-title sui-lg" id="smush-title-updated-dialog" style="white-space: normal">
<?php esc_html_e( 'Local WebP just leveled up!', 'wp-smushit' ); ?>
</h3>
<p class="sui-description">
<?php esc_html_e( 'Now serve Local WebP images with one-click, on all server types, without adding server rules with our new Direct Conversion method.', 'wp-smushit' ); ?>
</p>
<?php
if ( $cta_url ) {
?>
<a href="<?php echo esc_js( $cta_url ); ?>" class="sui-button sui-button-grey" onclick="WP_Smush.onboarding.hideUpgradeModal(event, this)">
<?php esc_html_e( 'Take me there', 'wp-smushit' ); ?>
</a>
<?php
}
?>
</div>
</div>
</div>
</div>