installed plugin Easy Digital Downloads
version 3.1.0.3
This commit is contained in:
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
/**
|
||||
* Admin tax table add "form".
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @package EDD
|
||||
* @category Template
|
||||
* @author Easy Digital Downloads
|
||||
* @version 1.0.0
|
||||
*/
|
||||
?>
|
||||
|
||||
<tr class="edd-tax-rate-table-add">
|
||||
|
||||
<th colspan="2">
|
||||
<label for="tax_rate_country" class="screen-reader-text"><?php esc_html_e( 'Country', 'easy-digital-downloads' ); ?></label>
|
||||
<?php
|
||||
echo EDD()->html->country_select( array(
|
||||
'id' => 'tax_rate_country',
|
||||
) );
|
||||
?>
|
||||
</th>
|
||||
|
||||
<th>
|
||||
<label for="tax_rate_region" class="screen-reader-text"><?php esc_html_e( 'Region', 'easy-digital-downloads' ); ?></label>
|
||||
|
||||
<label>
|
||||
<input type="checkbox" id="tax_rate_region_global" checked disabled /><?php esc_html_e( 'Apply to whole country', 'easy-digital-downloads' ); ?>
|
||||
</label>
|
||||
|
||||
<div id="tax_rate_region_wrapper"></div>
|
||||
</th>
|
||||
|
||||
<th>
|
||||
<label for="tax_rate_amount" class="screen-reader-text"><?php esc_html_e( 'Rate', 'easy-digital-downloads' ); ?></label>
|
||||
<input type="number" step="0.0001" min="0.0" max="99" id="tax_rate_amount" />
|
||||
</th>
|
||||
|
||||
<th class="edd-tax-rates-table-actions">
|
||||
<button id="tax_rate_submit" class="button button-secondary"><?php esc_html_e( 'Add Rate', 'easy-digital-downloads' ); ?></button>
|
||||
</th>
|
||||
|
||||
</tr>
|
Reference in New Issue
Block a user