{# # Shipping Calculator (Bootstrap 5 Override) # # Collapsible form to estimate shipping costs. # # Expected context: # button_text - Submit button text # customer_country - Selected country code # customer_state - Selected state code # customer_city - City value # customer_postcode - Postcode value # countries - Array of country options # states - Array of state options for selected country # show_country - Whether to show country field # show_state - Whether to show state field # show_city - Whether to show city field # show_postcode - Whether to show postcode field # # WooCommerce PHP equivalent: cart/shipping-calculator.php # # @package WcBootstrap # @since 0.1.0 #} {{ do_action('woocommerce_before_shipping_calculator') }}
{% if show_country|default(true) %}
{% endif %} {% if show_state|default(true) %}
{% if states is defined and states|length > 0 %} {% else %} {% endif %}
{% endif %} {% if show_city|default(false) %}
{% endif %} {% if show_postcode|default(true) %}
{% endif %} {{ wp_nonce_field('woocommerce-shipping-calculator', 'woocommerce-shipping-calculator-nonce') }}
{{ do_action('woocommerce_after_shipping_calculator') }}