PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 2.7.0
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v2.7.0
2.7.0 2.6.0 trunk 1.1.0 1.1.4 1.2.1 1.2.2 1.2.3 1.2.5 1.2.9 1.3.1 1.3.2 1.5.0 1.5.1 1.5.4 1.5.7 1.5.8 1.5.9 1.6.2 1.6.5 1.6.8 1.7.2 1.7.4 1.7.5 1.7.9 All 43 releases
← All changes | includes/elementor/modules/checkout/templates/payment-continue.php +11 -2 1.2.92.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