woocommerce/templates/cart/shipping-calculator.php

103 lines
4.1 KiB
PHP
Raw Normal View History

2011-12-09 20:29:43 +00:00
<?php
/**
2015-11-03 13:53:50 +00:00
* Shipping Calculator
2012-08-14 18:05:45 +00:00
*
2015-11-03 13:31:20 +00:00
* This template can be overridden by copying it to yourtheme/woocommerce/cart/shipping-calculator.php.
*
2016-02-12 11:28:41 +00:00
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
2016-05-27 01:48:49 +00:00
* @see https://docs.woothemes.com/document/template-structure/
2012-08-14 18:05:45 +00:00
* @author WooThemes
* @package WooCommerce/Templates
2013-04-15 10:35:25 +00:00
* @version 2.0.8
2011-12-09 20:29:43 +00:00
*/
2012-08-14 18:05:45 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if ( 'no' === get_option( 'woocommerce_enable_shipping_calc' ) || ! WC()->cart->needs_shipping() ) {
2013-04-15 10:35:25 +00:00
return;
}
2011-12-09 20:29:43 +00:00
?>
<?php do_action( 'woocommerce_before_shipping_calculator' ); ?>
<form class="woocommerce-shipping-calculator" action="<?php echo esc_url( wc_get_cart_url() ); ?>" method="post">
2013-04-15 10:35:25 +00:00
2014-12-09 16:20:43 +00:00
<p><a href="#" class="shipping-calculator-button"><?php _e( 'Calculate Shipping', 'woocommerce' ); ?></a></p>
2013-04-15 10:35:25 +00:00
<section class="shipping-calculator-form" style="display:none;">
2013-04-15 10:35:25 +00:00
<p class="form-row form-row-wide" id="calc_shipping_country_field">
2011-12-23 20:29:10 +00:00
<select name="calc_shipping_country" id="calc_shipping_country" class="country_to_state" rel="calc_shipping_state">
2012-10-16 09:45:33 +00:00
<option value=""><?php _e( 'Select a country&hellip;', 'woocommerce' ); ?></option>
2011-12-23 20:29:10 +00:00
<?php
2013-11-25 14:01:32 +00:00
foreach( WC()->countries->get_shipping_countries() as $key => $value )
echo '<option value="' . esc_attr( $key ) . '"' . selected( WC()->customer->get_shipping_country(), esc_attr( $key ), false ) . '>' . esc_html( $value ) . '</option>';
2011-12-23 20:29:10 +00:00
?>
</select>
</p>
2013-04-15 10:35:25 +00:00
<p class="form-row form-row-wide" id="calc_shipping_state_field">
2011-12-09 20:29:43 +00:00
<?php
2013-11-25 14:01:32 +00:00
$current_cc = WC()->customer->get_shipping_country();
$current_r = WC()->customer->get_shipping_state();
$states = WC()->countries->get_states( $current_cc );
2012-08-14 18:05:45 +00:00
2013-04-15 10:35:25 +00:00
// Hidden Input
if ( is_array( $states ) && empty( $states ) ) {
2012-08-14 18:05:45 +00:00
?><input type="hidden" name="calc_shipping_state" id="calc_shipping_state" placeholder="<?php esc_attr_e( 'State / county', 'woocommerce' ); ?>" /><?php
2012-08-14 18:05:45 +00:00
2013-04-15 10:35:25 +00:00
// Dropdown Input
} elseif ( is_array( $states ) ) {
2012-08-14 18:05:45 +00:00
2013-04-15 10:35:25 +00:00
?><span>
<select name="calc_shipping_state" id="calc_shipping_state" placeholder="<?php esc_attr_e( 'State / county', 'woocommerce' ); ?>">
2013-04-15 10:35:25 +00:00
<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, $ckey, false ) . '>' . __( esc_html( $cvalue ), 'woocommerce' ) .'</option>';
?>
</select>
</span><?php
2012-08-14 18:05:45 +00:00
2013-04-15 10:35:25 +00:00
// Standard Input
} else {
2012-08-14 18:05:45 +00:00
?><input type="text" class="input-text" value="<?php echo esc_attr( $current_r ); ?>" placeholder="<?php esc_attr_e( 'State / county', 'woocommerce' ); ?>" name="calc_shipping_state" id="calc_shipping_state" /><?php
2012-08-14 18:05:45 +00:00
}
2011-12-09 20:29:43 +00:00
?>
</p>
2013-04-15 10:35:25 +00:00
<?php if ( apply_filters( 'woocommerce_shipping_calculator_enable_city', false ) ) : ?>
<p class="form-row form-row-wide" id="calc_shipping_city_field">
<input type="text" class="input-text" value="<?php echo esc_attr( WC()->customer->get_shipping_city() ); ?>" placeholder="<?php esc_attr_e( 'City', 'woocommerce' ); ?>" name="calc_shipping_city" id="calc_shipping_city" />
2013-04-15 10:35:25 +00:00
</p>
<?php endif; ?>
<?php if ( apply_filters( 'woocommerce_shipping_calculator_enable_postcode', true ) ) : ?>
<p class="form-row form-row-wide" id="calc_shipping_postcode_field">
<input type="text" class="input-text" value="<?php echo esc_attr( WC()->customer->get_shipping_postcode() ); ?>" placeholder="<?php esc_attr_e( 'Postcode / ZIP', 'woocommerce' ); ?>" name="calc_shipping_postcode" id="calc_shipping_postcode" />
2013-04-15 10:35:25 +00:00
</p>
<?php endif; ?>
2012-10-16 09:45:33 +00:00
<p><button type="submit" name="calc_shipping" value="1" class="button"><?php _e( 'Update Totals', 'woocommerce' ); ?></button></p>
2013-04-15 10:35:25 +00:00
<?php wp_nonce_field( 'woocommerce-cart' ); ?>
2011-12-09 20:29:43 +00:00
</section>
</form>
<?php do_action( 'woocommerce_after_shipping_calculator' ); ?>