| Server IP : 46.105.57.169 / Your IP : 216.73.217.35 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/blueversionx/wp-content/themes/stargaze/skins/ |
Upload File : |
<?php
/**
* The template to display Admin notices
*
* @package STARGAZE
* @since STARGAZE 1.98.0
*/
$stargaze_skins_url = get_admin_url( null, 'admin.php?page=trx_addons_theme_panel#trx_addons_theme_panel_section_skins' );
$stargaze_active_skin = stargaze_skins_get_active_skin_name();
?>
<div class="stargaze_admin_notice stargaze_skins_notice notice notice-error">
<?php
// Theme image
$stargaze_theme_img = stargaze_get_file_url( 'screenshot.jpg' );
if ( '' != $stargaze_theme_img ) {
?>
<div class="stargaze_notice_image"><img src="<?php echo esc_url( $stargaze_theme_img ); ?>" alt="<?php esc_attr_e( 'Theme screenshot', 'stargaze' ); ?>"></div>
<?php
}
// Title
?>
<h3 class="stargaze_notice_title">
<?php esc_html_e( 'Active skin is missing!', 'stargaze' ); ?>
</h3>
<div class="stargaze_notice_text">
<p>
<?php
// Translators: Add a current skin name to the message
echo wp_kses_data( sprintf( __( "Your active skin <b>'%s'</b> is missing. Usually this happens when the theme is updated directly through the server or FTP.", 'stargaze' ), ucfirst( $stargaze_active_skin ) ) );
?>
</p>
<p>
<?php
echo wp_kses_data( __( "Please use only <b>'ThemeREX Updater v.1.6.0+'</b> plugin for your future updates.", 'stargaze' ) );
?>
</p>
<p>
<?php
echo wp_kses_data( __( "But no worries! You can re-download the skin via 'Skins Manager' ( Theme Panel - Theme Dashboard - Skins ).", 'stargaze' ) );
?>
</p>
</div>
<?php
// Buttons
?>
<div class="stargaze_notice_buttons">
<?php
// Link to the theme dashboard page
?>
<a href="<?php echo esc_url( $stargaze_skins_url ); ?>" class="button button-primary"><i class="dashicons dashicons-update"></i>
<?php
// Translators: Add theme name
esc_html_e( 'Go to Skins manager', 'stargaze' );
?>
</a>
</div>
</div>