You've already forked wc-bootstrap
Redesign navigation with endpoint icons, offcanvas-lg responsive pattern, and sticky sidebar. Replace flat dashboard with card-based welcome greeting (avatar) and quick-action grid. Wrap all forms (edit-account, edit-address, lost/reset-password) in card sections with icon headers. Restructure view-order with summary card and status badge component. Override WooCommerce's float-based layout and max-width constraint to let Bootstrap flex grid handle sizing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
60 lines
2.3 KiB
Twig
60 lines
2.3 KiB
Twig
{#
|
|
# Edit Address Form (Bootstrap 5 Override)
|
|
#
|
|
# Address editing form wrapped in a Bootstrap card with
|
|
# contextual icon for billing/shipping.
|
|
#
|
|
# Expected context:
|
|
# load_address - Address type ('billing' or 'shipping'), or empty
|
|
# address - Array of address fields
|
|
#
|
|
# WooCommerce PHP equivalent: myaccount/form-edit-address.php
|
|
#
|
|
# @package WcBootstrap
|
|
# @since 0.1.0
|
|
#}
|
|
|
|
{% set page_title = load_address == 'billing' ? __('Billing address') : __('Shipping address') %}
|
|
{% set address_icon = load_address == 'billing' ? 'bi-receipt' : 'bi-truck' %}
|
|
|
|
{{ do_action('woocommerce_before_edit_account_address_form') }}
|
|
|
|
{% if not load_address %}
|
|
{% include 'myaccount/my-address.html.twig' %}
|
|
{% else %}
|
|
<div class="card shadow-sm">
|
|
<div class="card-header">
|
|
<h2 class="h5 mb-0">
|
|
<i class="bi {{ address_icon }} me-1" aria-hidden="true"></i>
|
|
{{ apply_filters('woocommerce_my_account_edit_address_title', page_title, load_address) }}
|
|
</h2>
|
|
</div>
|
|
<div class="card-body">
|
|
<form method="post" novalidate>
|
|
<div class="woocommerce-address-fields">
|
|
{{ do_action('woocommerce_before_edit_address_form_' ~ load_address) }}
|
|
|
|
<div class="woocommerce-address-fields__field-wrapper">
|
|
{% for key, field in address %}
|
|
{{ woocommerce_form_field(key, field, wc_get_post_data_by_key(key, field.value)) }}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{{ do_action('woocommerce_after_edit_address_form_' ~ load_address) }}
|
|
|
|
<div class="mt-3">
|
|
<button type="submit" class="btn btn-primary" name="save_address" value="{{ __('Save address') }}">
|
|
<i class="bi bi-check-lg me-1" aria-hidden="true"></i>
|
|
{{ __('Save address') }}
|
|
</button>
|
|
{{ wp_nonce_field('woocommerce-edit_address', 'woocommerce-edit-address-nonce') }}
|
|
<input type="hidden" name="action" value="edit_address" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{{ do_action('woocommerce_after_edit_account_address_form') }}
|