| Server IP : 104.26.5.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/buzzbitesv3/public_html/wp-content/themes/bite/skins/ |
Upload File : |
<?php
/**
* The template to display Admin notices
*
* @package BITE
* @since BITE 1.98.0
*/
$bite_skins_url = get_admin_url( null, 'admin.php?page=trx_addons_theme_panel#trx_addons_theme_panel_section_skins' );
$bite_active_skin = bite_skins_get_active_skin_name();
?>
<div class="bite_admin_notice bite_skins_notice notice notice-error">
<?php
// Theme image
$bite_theme_img = bite_get_file_url( 'screenshot.jpg' );
if ( '' != $bite_theme_img ) {
?>
<div class="bite_notice_image"><img src="<?php echo esc_url( $bite_theme_img ); ?>" alt="<?php esc_attr_e( 'Theme screenshot', 'bite' ); ?>"></div>
<?php
}
// Title
?>
<h3 class="bite_notice_title">
<?php esc_html_e( 'Active skin is missing!', 'bite' ); ?>
</h3>
<div class="bite_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.", 'bite' ), ucfirst( $bite_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.", 'bite' ) );
?>
</p>
<p>
<?php
echo wp_kses_data( __( "But no worries! You can re-download the skin via 'Skins Manager' ( Theme Panel - Theme Dashboard - Skins ).", 'bite' ) );
?>
</p>
</div>
<?php
// Buttons
?>
<div class="bite_notice_buttons">
<?php
// Link to the theme dashboard page
?>
<a href="<?php echo esc_url( $bite_skins_url ); ?>" class="button button-primary"><i class="dashicons dashicons-update"></i>
<?php
// Translators: Add theme name
esc_html_e( 'Go to Skins manager', 'bite' );
?>
</a>
</div>
</div>