| @@ -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 | |