woocommerce/includes/admin/views/html-notice-install.php

15 lines
638 B
PHP
Raw Normal View History

2012-11-27 16:22:47 +00:00
<?php
/**
* Admin View: Notice - Install
*/
if ( ! defined( 'ABSPATH' ) ) {
2015-03-13 23:48:15 +00:00
exit;
}
2012-10-18 09:33:02 +00:00
?>
<div id="message" class="updated woocommerce-message wc-connect">
2015-04-29 09:47:57 +00:00
<p><?php _e( '<strong>Welcome to WooCommerce</strong> &#8211; You&lsquo;re almost ready to start selling :)', 'woocommerce' ); ?></p>
<p class="submit"><a href="<?php echo esc_url( admin_url( 'admin.php?page=wc-setup' ) ); ?>" class="button-primary"><?php _e( 'Run the Setup Wizard', 'woocommerce' ); ?></a> <a class="button-secondary skip" href="<?php echo esc_url( add_query_arg( 'wc-hide-notice', 'install' ) ); ?>"><?php _e( 'Skip Setup', 'woocommerce' ); ?></a></p>
2015-01-29 14:33:06 +00:00
</div>