File: /home/salamatk/takarzan.ir/wp-content/themes/dropshipping-shop/inc/core/activation-notice.php
<?php
// Show the notice only once after theme activation
global $pagenow;
if ( is_admin() && 'themes.php' === $pagenow && isset( $_GET['activated'] ) ) {
add_action( 'admin_notices', function () {
?>
<div class="notice notice-success is-dismissible welcome-notice">
<div class="notice-row">
<div class="notice-text">
<p class="welcome-text1"><?php esc_html_e( '🎉 Welcome to VW Themes,', 'dropshipping-shop' ); ?></p>
<p class="welcome-text2"><?php esc_html_e( 'You are now using the Dropshipping Shop, a beautifully designed theme to kickstart your website.', 'dropshipping-shop' ); ?></p>
<p class="welcome-text3"><?php esc_html_e( 'To help you get started quickly, use the options below:', 'dropshipping-shop' ); ?></p>
<span class="import-btn">
<a href="javascript:void(0);" id="install-activate-button" class="button admin-button info-button">
<?php echo __('GET STARTED', 'dropshipping-shop'); ?>
</a>
<script type="text/javascript">
document.getElementById('install-activate-button').addEventListener('click', function () {
const dropshipping_shop_button = this;
const dropshipping_shop_redirectUrl = '<?php echo esc_url(admin_url("themes.php?page=dropshipping-shop-info")); ?>';
// First, check if plugin is already active
jQuery.post(ajaxurl, { action: 'check_plugin_activation' }, function (response) {
if (response.success && response.data.active) {
// Plugin already active — just redirect
window.location.href = dropshipping_shop_redirectUrl;
} else {
// Show Installing & Activating only if not already active
dropshipping_shop_button.textContent = 'Installing & Activating...';
jQuery.post(ajaxurl, {
action: 'install_and_activate_required_plugin',
nonce: '<?php echo wp_create_nonce("install_activate_nonce"); ?>'
}, function (response) {
if (response.success) {
window.location.href = dropshipping_shop_redirectUrl;
} else {
alert('Failed to activate the plugin.');
dropshipping_shop_button.textContent = 'Try Again';
}
});
}
});
});
</script>
</span>
<span class="demo-btn">
<a href="https://www.vwthemes.net/dropshipping-shop-pro/" class="button button-primary" target="_blank">
<?php esc_html_e( 'VIEW DEMO', 'dropshipping-shop' ); ?>
</a>
</span>
<span class="upgrade-btn">
<a href="https://www.vwthemes.com/products/dropshipping-wordpress-theme" class="button button-primary" target="_blank">
<?php esc_html_e( 'UPGRADE TO PRO', 'dropshipping-shop' ); ?>
</a>
</span>
<span class="bundle-btn">
<a href="https://www.vwthemes.com/products/wp-theme-bundle" class="button button-primary" target="_blank">
<?php esc_html_e( 'BUNDLE OF 350+ THEMES', 'dropshipping-shop' ); ?>
</a>
</span>
</div>
<div class="notice-img1">
<img src="<?php echo esc_url( get_template_directory_uri() . '/images/arrow-notice.png' ); ?>" width="180" alt="<?php esc_attr_e( 'Dropshipping Shop', 'dropshipping-shop' ); ?>" />
</div>
<div class="notice-img2">
<img src="<?php echo esc_url( get_template_directory_uri() . '/images/bundle-notice.png' ); ?>" width="180" alt="<?php esc_attr_e( 'Dropshipping Shop', 'dropshipping-shop' ); ?>" />
</div>
</div>
</div>
<?php
});
}