You've already forked wc-tier-and-package-prices
- Increased width of label input fields in admin (short → regular) - Documented double-install bug workaround in CHANGELOG - Updated version to 1.1.22 across all files - Created release package with proper exclusions 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
37 lines
1.4 KiB
Twig
37 lines
1.4 KiB
Twig
{#
|
|
# Admin Tier Row Template
|
|
#
|
|
# @package WC_Tier_Package_Prices
|
|
# @var int index
|
|
# @var array tier
|
|
#}
|
|
<div class="wc-tpp-tier-row">
|
|
<p class="form-field">
|
|
<label>{{ 'Minimum Quantity'|__('wc-tier-package-prices') }}</label>
|
|
<input type="number"
|
|
name="_wc_tpp_tiers[{{ index|esc_attr }}][min_qty]"
|
|
value="{{ tier.min_qty|default('')|esc_attr }}"
|
|
placeholder="{{ 'e.g., 10'|__('wc-tier-package-prices') }}"
|
|
min="1"
|
|
step="1"
|
|
class="short">
|
|
</p>
|
|
<p class="form-field">
|
|
<label>{{ 'Price per Unit'|__('wc-tier-package-prices') }}</label>
|
|
<input type="text"
|
|
name="_wc_tpp_tiers[{{ index|esc_attr }}][price]"
|
|
value="{{ tier.price|default('')|esc_attr }}"
|
|
placeholder="{{ 'e.g., 9.99'|__('wc-tier-package-prices') }}"
|
|
class="short wc_input_price">
|
|
</p>
|
|
<p class="form-field">
|
|
<label>{{ 'Label (Optional)'|__('wc-tier-package-prices') }}</label>
|
|
<input type="text"
|
|
name="_wc_tpp_tiers[{{ index|esc_attr }}][label]"
|
|
value="{{ tier.label|default('')|esc_attr }}"
|
|
placeholder="{{ 'e.g., Wholesale'|__('wc-tier-package-prices') }}"
|
|
class="regular">
|
|
</p>
|
|
<button type="button" class="button wc-tpp-remove-tier">{{ 'Remove'|__('wc-tier-package-prices') }}</button>
|
|
</div>
|