/var/www/(Del)hsihk.com/wp-content/plugins/woocommerce/templates/cart/shipping-calculator.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
/**
 * Shipping Calculator
 *
 * @author         WooThemes
 * @package     WooCommerce/Templates
 * @version     2.0.8
 */

if ( ! defined'ABSPATH' ) ) exit; // Exit if accessed directly

if ( get_option'woocommerce_enable_shipping_calc' ) === 'no' || ! WC()->cart->needs_shipping() )
    return;
?>

<?php do_action'woocommerce_before_shipping_calculator' ); ?>

<form class="shipping_calculator" action="<?php echo esc_urlWC()->cart->get_cart_url() ); ?>" method="post">

    <h2><a href="#" class="shipping-calculator-button"><?php _e'Calculate Shipping''woocommerce' ); ?></a></h2>

    <section class="shipping-calculator-form">

        <p class="form-row form-row-wide">
            <select name="calc_shipping_country" id="calc_shipping_country" class="country_to_state" rel="calc_shipping_state">
                <option value=""><?php _e'Select a country&hellip;''woocommerce' ); ?></option>
                <?php
                    
foreach( WC()->countries->get_shipping_countries() as $key => $value )
                        echo 
'<option value="' esc_attr$key ) . '"' selectedWC()->customer->get_shipping_country(), esc_attr$key ), false ) . '>' esc_html$value ) . '</option>';
                
?>
            </select>
        </p>

        <p class="form-row form-row-wide">
            <?php
                $current_cc 
WC()->customer->get_shipping_country();
                
$current_r  WC()->customer->get_shipping_state();
                
$states     WC()->countries->get_states$current_cc );

                
// Hidden Input
                
if ( is_array$states ) && empty( $states ) ) {

                    
?><input type="hidden" name="calc_shipping_state" id="calc_shipping_state" placeholder="<?php _e'State / county''woocommerce' ); ?>" /><?php

                
// Dropdown Input
                
} elseif ( is_array$states ) ) {

                    
?><span>
                        <select name="calc_shipping_state" id="calc_shipping_state" placeholder="<?php _e'State / county''woocommerce' ); ?>">
                            <option value=""><?php _e'Select a state&hellip;''woocommerce' ); ?></option>
                            <?php
                                
foreach ( $states as $ckey => $cvalue )
                                    echo 
'<option value="' esc_attr$ckey ) . '" ' selected$current_r$ckeyfalse ) . '>' __esc_html$cvalue ), 'woocommerce' ) .'</option>';
                            
?>
                        </select>
                    </span><?php

                
// Standard Input
                
} else {

                    
?><input type="text" class="input-text" value="<?php echo esc_attr$current_r ); ?>" placeholder="<?php _e'State / county''woocommerce' ); ?>" name="calc_shipping_state" id="calc_shipping_state" /><?php

                
}
            
?>
        </p>

        <?php if ( apply_filters'woocommerce_shipping_calculator_enable_city'false ) ) : ?>

            <p class="form-row form-row-wide">
                <input type="text" class="input-text" value="<?php echo esc_attrWC()->customer->get_shipping_city() ); ?>" placeholder="<?php _e'City''woocommerce' ); ?>" name="calc_shipping_city" id="calc_shipping_city" />
            </p>

        <?php endif; ?>

        <?php if ( apply_filters'woocommerce_shipping_calculator_enable_postcode'true ) ) : ?>

            <p class="form-row form-row-wide">
                <input type="text" class="input-text" value="<?php echo esc_attrWC()->customer->get_shipping_postcode() ); ?>" placeholder="<?php _e'Postcode / Zip''woocommerce' ); ?>" name="calc_shipping_postcode" id="calc_shipping_postcode" />
            </p>

        <?php endif; ?>

        <p><button type="submit" name="calc_shipping" value="1" class="button"><?php _e'Update Totals''woocommerce' ); ?></button></p>

        <?php wp_nonce_field'woocommerce-cart' ); ?>
    </section>
</form>

<?php do_action'woocommerce_after_shipping_calculator' ); ?>