html-admin-dashboard-setup.php
5 months ago
html-admin-page-addons-category-nav.php
4 years ago
html-admin-page-product-export.php
1 year ago
html-admin-page-reports.php
2 years ago
html-admin-page-status-logs-db.php
2 years ago
html-admin-page-status-logs.php
2 years ago
html-admin-page-status-report.php
1 month ago
html-admin-page-status-tools.php
2 years ago
html-admin-page-status.php
8 years ago
html-admin-settings.php
1 month ago
html-bulk-edit-product.php
1 year ago
html-email-template-preview.php
1 year ago
html-notice-base-table-missing.php
3 years ago
html-notice-custom.php
8 years ago
html-notice-download-dir-sync-complete.php
2 years ago
html-notice-install.php
5 years ago
html-notice-legacy-shipping.php
11 months ago
html-notice-maxmind-license-key.php
6 years ago
html-notice-no-shipping-methods.php
2 years ago
html-notice-redirect-only-download.php
4 years ago
html-notice-regenerating-lookup-table.php
5 years ago
html-notice-regenerating-thumbnails.php
8 years ago
html-notice-secure-connection.php
2 years ago
html-notice-sync-on-read-disabled.php
3 months ago
html-notice-template-check.php
2 years ago
html-notice-update.php
4 months ago
html-notice-updated.php
7 years ago
html-notice-updating.php
6 years ago
html-notice-uploads-directory-is-unprotected.php
2 years ago
html-notice-wp-php-minimum-requirements.php
2 years ago
html-quick-edit-product.php
1 year ago
html-report-by-date.php
5 years ago
html-notice-no-shipping-methods.php
38 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Admin View: Notice - No Shipping methods. |
| 4 | * |
| 5 | * @package WooCommerce\Admin\Notices |
| 6 | */ |
| 7 | |
| 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | exit; |
| 10 | } |
| 11 | ?> |
| 12 | <div id="message" class="updated woocommerce-message"> |
| 13 | <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' ) ); ?>"> |
| 14 | <?php esc_html_e( 'Dismiss', 'woocommerce' ); ?> |
| 15 | </a> |
| 16 | |
| 17 | <p class="main"> |
| 18 | <strong> |
| 19 | <?php esc_html_e( 'Add shipping methods & zones', 'woocommerce' ); ?> |
| 20 | </strong> |
| 21 | </p> |
| 22 | <p> |
| 23 | <?php esc_html_e( 'Shipping is currently enabled, but you have not added any shipping methods to your shipping zones.', 'woocommerce' ); ?> |
| 24 | </p> |
| 25 | <p> |
| 26 | <?php esc_html_e( 'Customers will not be able to purchase physical goods from your store until a shipping method is available.', 'woocommerce' ); ?> |
| 27 | </p> |
| 28 | |
| 29 | <p class="submit"> |
| 30 | <a class="button-primary" href="<?php echo esc_url( admin_url( 'admin.php?page=wc-settings&tab=shipping' ) ); ?>"> |
| 31 | <?php esc_html_e( 'Setup shipping zones', 'woocommerce' ); ?> |
| 32 | </a> |
| 33 | <a class="button-secondary" href="https://woocommerce.com/document/setting-up-shipping-zones/"> |
| 34 | <?php esc_html_e( 'Learn more about shipping zones', 'woocommerce' ); ?> |
| 35 | </a> |
| 36 | </p> |
| 37 | </div> |
| 38 |