[2.4] Make "Not right now" button on Setup Wizard go to the WP dashboard

closes #9392
This commit is contained in:
Claudio Sanches 2015-10-22 18:17:14 -02:00
parent bfe98a283c
commit c1b46113bc
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ class WC_Admin_Setup_Wizard {
<p><?php _e( 'No time right now? If you dont want to go through the wizard, you can skip and return to the WordPress dashboard. Come back anytime if you change your mind!', 'woocommerce' ); ?></p>
<p class="wc-setup-actions step">
<a href="<?php echo esc_url( $this->get_next_step_link() ); ?>" class="button-primary button button-large button-next"><?php _e( 'Let\'s Go!', 'woocommerce' ); ?></a>
<a href="<?php echo esc_url( wp_get_referer() ? wp_get_referer() : admin_url( 'plugins.php' ) ); ?>" class="button button-large"><?php _e( 'Not right now', 'woocommerce' ); ?></a>
<a href="<?php echo esc_url( admin_url() ); ?>" class="button button-large"><?php _e( 'Not right now', 'woocommerce' ); ?></a>
</p>
<?php
}