PluginProbe
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages / 2.3.0
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages v2.3.0
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 2.3.2 2.3.3 All 194 releases
convertkit / views / backend / term / fields-add.php

fields-add.php in Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages 2.3.0, at views/backend/term/fields-add.php

51 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Add Term Fields template
4 *
5 * @package ConvertKit
6 * @author ConvertKit
7 */
8
9 ?>
10 <div class="form-field term-description-wrap">
11 <label for="tag-description"><?php esc_html_e( 'ConvertKit Form', 'convertkit' ); ?></label>
12
13 <div class="convertkit-select2-container convertkit-select2-container-grid">
14 <select name="wp-convertkit[form]" id="wp-convertkit-form" class="convertkit-select2">
15 <option value="0" data-preserve-on-refresh="1" selected>
16 <?php esc_html_e( 'Default', 'convertkit' ); ?>
17 </option>
18 <?php
19 if ( $convertkit_forms->exist() ) {
20 foreach ( $convertkit_forms->get() as $convertkit_form ) {
21 ?>
22 <option value="<?php echo esc_attr( $convertkit_form['id'] ); ?>">
23 <?php echo esc_html( $convertkit_form['name'] ); ?>
24 </option>
25 <?php
26 }
27 }
28 ?>
29 </select>
30 <button class="wp-convertkit-refresh-resources" class="button button-secondary" title="<?php esc_attr_e( 'Refresh Forms from ConvertKit account', 'convertkit' ); ?>" data-resource="forms" data-field="#wp-convertkit-form">
31 <span class="dashicons dashicons-update"></span>
32 </button>
33 <p class="description">
34 <code><?php esc_html_e( 'Default', 'convertkit' ); ?></code>
35 <?php esc_html_e( ': Display a form based on the Post\'s settings.', 'convertkit' ); ?>
36 <br />
37 <?php
38 printf(
39 /* translators: Taxonomy Name */
40 esc_html__( 'Any other option will display that form after the main content for Posts assigned to this %s.', 'convertkit' ),
41 'category'
42 );
43 ?>
44 </p>
45 </div>
46
47 <?php
48 wp_nonce_field( 'wp-convertkit-save-meta', 'wp-convertkit-save-meta-nonce' );
49 ?>
50 </div>
51