← All changes
|
includes/elementor/modules/checkout/templates/payment-continue.php
+11
-2
1.3.1
→
2.7.0
View file →
| @@ -1,13 +1,22 @@ | ||
| 1 | +<?php | |
| 2 | +/** | |
| 3 | + * Payment continue (place order) template. | |
| 4 | + * | |
| 5 | + * @package Sellkit | |
| 6 | + */ | |
| 7 | + | |
| 8 | +defined( 'ABSPATH' ) || exit; | |
| 9 | +?> | |
| 1 | 10 | <section class="place-order sellkit-one-page-checkout-place-order"> |
| 2 | 11 | <noscript> |
| 3 | 12 | <?php |
| 4 | 13 | //phpcs:disable |
| 5 | 14 | /* translators: $1 and $2 opening and closing emphasis tags respectively */ |
| 6 | - 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.', 'woocommerce' ), '<em>', '</em>' ); | |
| 15 | + 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.', 'sellkit' ), '<em>', '</em>' ); | |
| 7 | 16 | //phpcs:enable |
| 8 | 17 | ?> |
| 9 | - <br/><button type="submit" class="button alt sellkit-checkout-widget-primary-button" name="woocommerce_checkout_update_totals" value="<?php esc_attr_e( 'Update totals', 'woocommerce' ); ?>"><?php esc_html_e( 'Update totals', 'woocommerce' ); ?></button> | |
| 18 | + <br/><button type="submit" class="button alt sellkit-checkout-widget-primary-button" name="woocommerce_checkout_update_totals" value="<?php esc_attr_e( 'Update totals', 'sellkit' ); ?>"><?php esc_html_e( 'Update totals', 'sellkit' ); ?></button> | |
| 10 | 19 | </noscript> |
| 11 | 20 | |
| 12 | 21 | <?php do_action( 'woocommerce_review_order_before_submit' ); ?> |
| 13 | 22 | |