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