/home/bonphmya/geseroff.online/wp-content/themes/revirta/revirta/templates/admin-notice.php
<?php
/**
 * The template to display Admin notices
 *
 * @package WordPress
 * @subpackage REVIRTA
 * @since REVIRTA 1.0.1
 */
 
$revirta_theme_obj = wp_get_theme();
?>
<div class="update-nag" id="revirta_admin_notice">
	<h3 class="revirta_notice_title"><?php
		// Translators: Add theme name and version to the 'Welcome' message
		echo esc_html(sprintf(esc_html__('Welcome to %1$s v.%2$s', 'revirta'),
				$revirta_theme_obj->name . (REVIRTA_THEME_FREE ? ' ' . esc_html__('Free', 'revirta') : ''),
				$revirta_theme_obj->version
				));
	?></h3>
	<?php
	if (!revirta_exists_trx_addons()) {
		?><p><?php echo wp_kses_data(__('<b>Attention!</b> Plugin "ThemeREX Addons is required! Please, install and activate it!', 'revirta')); ?></p><?php
	}
	?><p>
		<a href="<?php echo esc_url(admin_url().'themes.php?page=revirta_about'); ?>" class="button button-primary"><i class="dashicons dashicons-nametag"></i> <?php
			// Translators: Add theme name
			echo esc_html(sprintf(esc_html__('About %s', 'revirta'), $revirta_theme_obj->name));
		?></a>
		<?php
		if (revirta_get_value_gp('page')!='tgmpa-install-plugins') {
			?>
			<a href="<?php echo esc_url(admin_url().'themes.php?page=tgmpa-install-plugins'); ?>" class="button button-primary"><i class="dashicons dashicons-admin-plugins"></i> <?php esc_html_e('Install plugins', 'revirta'); ?></a>
			<?php
		}
		if (function_exists('revirta_exists_trx_addons') && revirta_exists_trx_addons() && class_exists('trx_addons_demo_data_importer')) {
			?>
			<a href="<?php echo esc_url(admin_url().'themes.php?page=trx_importer'); ?>" class="button button-primary"><i class="dashicons dashicons-download"></i> <?php esc_html_e('One Click Demo Data', 'revirta'); ?></a>
			<?php
		}
		?>
        <a href="<?php echo esc_url(admin_url().'customize.php'); ?>" class="button button-primary"><i class="dashicons dashicons-admin-appearance"></i> <?php esc_html_e('Theme Customizer', 'revirta'); ?></a>
		<span> <?php esc_html_e('or', 'revirta'); ?> </span>
        <a href="<?php echo esc_url(admin_url().'themes.php?page=theme_options'); ?>" class="button button-primary"><i class="dashicons dashicons-admin-appearance"></i> <?php esc_html_e('Theme Options', 'revirta'); ?></a>
        <a href="#" class="button revirta_hide_notice"><i class="dashicons dashicons-dismiss"></i> <?php esc_html_e('Hide Notice', 'revirta'); ?></a>
	</p>
</div>