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/optin/module.php +4 -2 1.6.22.7.0 View file →
@@ -3,8 +3,9 @@
3 3 defined( 'ABSPATH' ) || die();
4 4
5 5 use Elementor\Plugin as Elementor;
6 6 use Elementor\Icons_Manager as Icon_Manager;
7 +use Elementor\Utils as Utils;
7 8
8 9 class Sellkit_Elementor_Optin_Module extends Sellkit_Elementor_Base_Module {
9 10
10 11 public static $field_types = [];
@@ -109,9 +110,9 @@
109 110 * @since 1.5.0
110 111 */
111 112 public static function get_action_types() {
112 113 return [
113 - 'growmatik' => esc_html__( 'Growmatik', 'sellkit' ),
114 + 'growmatik' => esc_html__( 'ConvesioConvert', 'sellkit' ),
114 115 'activecampaign' => esc_html__( 'ActiveCampaign', 'sellkit' ),
115 116 'convertkit' => esc_html__( 'ConvertKit', 'sellkit' ),
116 117 'drip' => esc_html__( 'Drip', 'sellkit' ),
117 118 'getresponse' => esc_html__( 'GetResponse', 'sellkit' ),
@@ -208,9 +209,10 @@
208 209 $font_icon = Icon_Manager::render_font_icon( $icon_data );
209 210 }
210 211
211 212 if ( ! empty( $font_icon ) ) {
212 - echo $font_icon;
213 + Utils::print_unescaped_internal_string( $font_icon );
214 +
213 215 return;
214 216 }
215 217 }
216 218