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-method.php +2 -1 1.3.22.7.0 View file →
@@ -23,9 +23,10 @@
23 23 <label class="wrp">
24 24 <input id="payment_method_<?php echo esc_attr( $gateway->id ); ?>" type="radio" class="input-radio sellkit-one-page-pay-method" name="payment_method" value="<?php echo esc_attr( $gateway->id ); ?>" <?php checked( $gateway->chosen, true ); ?> data-order_button_text="<?php echo esc_attr( $gateway->order_button_text ); ?>" />
25 25 <span class="checkmark"></span>
26 26 <label for="payment_method_<?php echo esc_attr( $gateway->id ); ?>" >
27 - <?php echo $gateway->get_title(); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?> <?php echo $gateway->get_icon(); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?>
27 + <div class="sellkit-checkout-payment-gateway-title"><?php echo wp_kses_post( $gateway->get_title() ); ?></div>
28 + <?php echo wp_kses_post( $gateway->get_icon() ); ?>
28 29 </label>
29 30 </label>
30 31 </li>
31 32 <?php if ( $gateway->has_fields() || $gateway->get_description() ) : ?>