Skip to content

Commit eb21493

Browse files
Merge pull request #124 from sailthru/INT-965-remove-custom-fields-dropdown-admin
Remove custom fields from admin panel dropdown
2 parents 9dc532d + 8377522 commit eb21493

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: sailthru-wp
33
Tags: personalization, email,
44
Requires at least: 5.5
55
Tested up to: 5.7
6-
Stable tag: 4.3.7
6+
Stable tag: 4.3.8
77

88
Provides an integration with Sailthru
99

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
## v4.3.8 (2024-07-26)
3+
Custom fields: Radio buttons, checkboxes, hidden fields, and select options not working so removed from dropdown.
4+
25
## v4.3.7 (2024-06-06)
36
Resolved issue with quotes not encoding properly
47

plugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Sailthru for WordPress
44
Plugin URI: http://sailthru.com/
55
Description: Add the power of Sailthru to your WordPress set up.
6-
Version: 4.3.7
6+
Version: 4.3.8
77
Requires at least: 5.5
88
Author: Sailthru
99
Author URI: http://sailthru.com
@@ -36,7 +36,7 @@
3636
* @var const $version The current version of the plugin.
3737
*/
3838
if ( ! defined( 'SAILTHRU_PLUGIN_VERSION' ) ) {
39-
define( 'SAILTHRU_PLUGIN_VERSION', '4.3.7' );
39+
define( 'SAILTHRU_PLUGIN_VERSION', '4.3.8' );
4040
}
4141

4242
if ( ! defined( 'SAILTHRU_PLUGIN_PATH' ) ) {

views/admin.functions.subscribe.options.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,6 @@ function field_type( $args ) {
163163
<option value="text"' . selected( esc_attr( $value ), 'text' ) . '>Text Field</option>
164164
<option value="tel"' . selected( esc_attr( $value ), 'tel' ) . '>Telephone</option>
165165
<option value="date"' . selected( esc_attr( $value ), 'date' ) . '>Date</option>
166-
<option value="hidden"' . selected( esc_attr( $value ), 'hidden' ) . '>Hidden</option>
167-
<option value="select"' . selected( esc_attr( $value ), 'select' ) . '>Select</option>
168-
<option value="radio"' . selected( esc_attr( $value ), 'radio' ) . '>Radio</option>
169-
<option value="checkbox"' . selected( esc_attr( $value ), 'radio' ) . '>Checkbox</option>
170166
</select>';
171167
echo '<div class="instructions">The type of html form field displayed.</div>';
172168

0 commit comments

Comments
 (0)