diff --git a/redux-core/inc/extensions/tabbed/tabbed/class-redux-tabbed.php b/redux-core/inc/extensions/tabbed/tabbed/class-redux-tabbed.php index 9a32fad2a..e4faaac40 100644 --- a/redux-core/inc/extensions/tabbed/tabbed/class-redux-tabbed.php +++ b/redux-core/inc/extensions/tabbed/tabbed/class-redux-tabbed.php @@ -124,7 +124,7 @@ public function output_field( array $field ) { $default = $field['default'] ?? ''; - $value = empty( $this->parent->options[ $orig_field_id ] ) ? $default : $this->parent->options[ $orig_field_id ]; + $value = empty( $this->parent->options[ $orig_field_id ] ) && 0 !== (int) $this->parent->options[ $orig_field_id ] ? $default : $this->parent->options[ $orig_field_id ]; $this->parent->render_class->field_input( $field, $value );