initial commit
This commit is contained in:
37
includes/admin/views/html-notice-no-shipping-methods.php
Normal file
37
includes/admin/views/html-notice-no-shipping-methods.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
/**
|
||||
* Admin View: Notice - No Shipping methods.
|
||||
*
|
||||
* @package WooCommerce\Admin\Notices
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit;
|
||||
}
|
||||
?>
|
||||
<div id="message" class="updated woocommerce-message">
|
||||
<a class="woocommerce-message-close notice-dismiss" href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'wc-hide-notice', 'no_shipping_methods' ), 'woocommerce_hide_notices_nonce', '_wc_notice_nonce' ) ); ?>">
|
||||
<?php esc_html_e( 'Dismiss', 'woocommerce' ); ?>
|
||||
</a>
|
||||
|
||||
<p class="main">
|
||||
<strong>
|
||||
<?php esc_html_e( 'Add shipping methods & zones', 'woocommerce' ); ?>
|
||||
</strong>
|
||||
</p>
|
||||
<p>
|
||||
<?php esc_html_e( 'Shipping is currently enabled, but you have not added any shipping methods to your shipping zones.', 'woocommerce' ); ?>
|
||||
</p>
|
||||
<p>
|
||||
<?php esc_html_e( 'Customers will not be able to purchase physical goods from your store until a shipping method is available.', 'woocommerce' ); ?>
|
||||
</p>
|
||||
|
||||
<p class="submit">
|
||||
<a class="button-primary" href="<?php echo esc_url( admin_url( 'admin.php?page=wc-settings&tab=shipping' ) ); ?>">
|
||||
<?php esc_html_e( 'Setup shipping zones', 'woocommerce' ); ?>
|
||||
</a>
|
||||
<a class="button-secondary" href="https://docs.woocommerce.com/document/setting-up-shipping-zones/">
|
||||
<?php esc_html_e( 'Learn more about shipping zones', 'woocommerce' ); ?>
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
Reference in New Issue
Block a user