/var/www/html/wp-content/plugins/woocommerce/includes/admin/views/html-notice-legacy-shipping.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
 * Admin View: Notice - Legacy Shipping.
 *
 * @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_urlwp_nonce_urladd_query_arg'wc-hide-notice''legacy_shipping' ), 'woocommerce_hide_notices_nonce''_wc_notice_nonce' ) ); ?>">
        <?php esc_html_e'Dismiss''woocommerce' ); ?>
    </a>

    <p class="main">
        <strong><?php esc_html_e'New:''woocommerce' ); ?> <?php esc_html_e'Shipping zones''woocommerce' ); ?></strong> &#8211; <?php esc_html_e'a group of regions that can be assigned different shipping methods and rates.''woocommerce' ); ?>
    </p>
    <p>
        <?php esc_html_e'Legacy shipping methods (flat rate, international flat rate, local pickup and delivery, and free shipping) are deprecated but will continue to work as normal for now. <b><em>They will be removed in future versions of WooCommerce</em></b>. We recommend disabling these and setting up new rates within shipping zones as soon as possible.''woocommerce' ); ?>
    </p>

    <p class="submit">
        <?php if ( empty( $_GET['page'] ) || empty( $_GET['tab'] ) || 'wc-settings' !== $_GET['page'] || 'shipping' !== $_GET['tab'] ) : ?>
            <a class="button-primary" href="<?php echo esc_urladmin_url'admin.php?page=wc-settings&tab=shipping' ) ); ?>">
                <?php esc_html_e'Setup shipping zones''woocommerce' ); ?>
            </a>
        <?php endif; ?>
        <a class="button-secondary" href="https://woocommerce.com/document/setting-up-shipping-zones/">
            <?php esc_html_e'Learn more about shipping zones''woocommerce' ); ?>
        </a>
    </p>
</div>