42'label' => __( 'Maximum words shown', 'gk-gravityview' ),
43'tooltip' => __( 'Enter the number of words to be shown. If specified it truncates the text. Leave it blank if you want to show the full text.', 'gk-gravityview' ),
44 );
45
46 $field_options['make_clickable'] = array(
47'type' => 'checkbox',
48'merge_tags' => false,
49'value' => 0,
50'label' => __( 'Convert text URLs to HTML links', 'gk-gravityview' ),
51'tooltip' => __( 'Converts URI, www, FTP, and email addresses in HTML links', 'gk-gravityview' ),
52 );
53
54 $field_options['allow_html'] = array(
55'type' => 'checkbox',
56'merge_tags' => false,
57'value' => 1,
58'label' => __( 'Display as HTML', 'gk-gravityview' ),
59'tooltip' => esc_html__( 'If enabled, safe HTML will be displayed and unsafe or unrecognized HTML tags will be stripped. If disabled, the field value will be displayed as text.', 'gk-gravityview' ),