HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Apache24/htdocs/wp-content/themes/page-builder-framework/inc/settings/activation-notice.php
<?php
/**
 * Theme activation notice's template.
 *
 * @package Page Builder Framework
 */

defined( 'ABSPATH' ) || die( "Can't access directly" );

global $wpbf_activation_notice_dismissal_nonce;
$screen = get_current_screen(); 
?>

<div class="notice notice-info wpbf-activation-notice is-dismissible">
	<div class="notice-body">
		<div class="notice-icon">
			<img src="<?php echo esc_url( WPBF_THEME_URI ); ?>/img/page-builder-framework-logo-blue.png" alt="Page Builder Framework Logo">
		</div>
		<div class="notice-content">
			<h2>
				<?php _e( 'Welcome to Page Builder Framework!', 'page-builder-framework' ); ?>
			</h2>
			<p>
				<?php _e( 'Thank you for choosing Page Builder Framework! Please visit the theme settings page to get started.', 'page-builder-framework' ); ?>
			</p>
			<?php if ( 'appearance_page_wpbf-premium' !== $screen->id ) { ?> 
			<p>
				<a href="<?php echo esc_url( admin_url( 'themes.php?page=wpbf-premium' ) ); ?>" class="button button-primary">
					<?php _e( 'Get Started', 'page-builder-framework' ); ?>
				</a>
			</p>
			<?php } ?>
		</div>
	</div>
</div>