PluginProbe
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages / 3.4.3
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages v3.4.3
3.4.3 3.4.2 3.4.1 3.4.0 3.3.9 3.3.8 3.3.7 3.3.6 3.3.5 3.3.4 3.3.3 3.3.2 3.3.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 All 196 releases
← All changes | views/backend/settings/tools.php +9 -5 3.3.33.4.3 View file →
@@ -117,13 +117,17 @@
117 117 </h2>
118 118
119 119 <p class="description">
120 120 <?php
121 - printf(
122 - /* translators: %s: Importer title */
123 - esc_html__( 'Automatically replace %s form shortcodes and blocks with Kit form shortcodes and blocks.', 'convertkit' ),
124 - esc_html( $importer['title'] )
125 - );
121 + if ( ! empty( $importer['description'] ) ) {
122 + echo esc_html( $importer['description'] );
123 + } else {
124 + printf(
125 + /* translators: %s: Importer title */
126 + esc_html__( 'Automatically replace %s form shortcodes and blocks with Kit form shortcodes and blocks.', 'convertkit' ),
127 + esc_html( $importer['title'] )
128 + );
129 + }
126 130 ?>
127 131 <br />
128 132 </p>
129 133