Merge pull request #896 from noelspringer/woocommerce-template-update
Update template to 3.5.3
This commit is contained in:
commit
7c66344f16
|
@ -12,7 +12,7 @@
|
||||||
*
|
*
|
||||||
* @see https://docs.woocommerce.com/document/template-structure/
|
* @see https://docs.woocommerce.com/document/template-structure/
|
||||||
* @package WooCommerce/Templates
|
* @package WooCommerce/Templates
|
||||||
* @version 3.4.0
|
* @version 3.5.3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
defined( 'ABSPATH' ) || exit;
|
defined( 'ABSPATH' ) || exit;
|
||||||
|
@ -37,7 +37,10 @@ if ( ! is_ajax() ) {
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<div class="form-row place-order">
|
<div class="form-row place-order">
|
||||||
<noscript>
|
<noscript>
|
||||||
<?php esc_html_e( 'Since your browser does not support JavaScript, or it is disabled, please ensure you click the <em>Update Totals</em> button before placing your order. You may be charged more than the amount stated above if you fail to do so.', 'understrap' ); ?>
|
<?php
|
||||||
|
/* translators: $1 and $2 opening and closing emphasis tags respectively */
|
||||||
|
printf( esc_html__( 'Since your browser does not support JavaScript, or it is disabled, please ensure you click the %1$sUpdate Totals%2$s button before placing your order. You may be charged more than the amount stated above if you fail to do so.', 'understrap' ), '<em>', '</em>' );
|
||||||
|
?>
|
||||||
<br/><button type="submit" class="btn btn-primary" name="woocommerce_checkout_update_totals" value="<?php esc_attr_e( 'Update totals', 'understrap' ); ?>"><?php esc_html_e( 'Update totals', 'understrap' ); ?></button>
|
<br/><button type="submit" class="btn btn-primary" name="woocommerce_checkout_update_totals" value="<?php esc_attr_e( 'Update totals', 'understrap' ); ?>"><?php esc_html_e( 'Update totals', 'understrap' ); ?></button>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
|
||||||
|
|
Reference in New Issue