PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.18
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.18
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/models/fields/FrmFieldName.php +1 -3 6.256.18 View file →
@@ -138,9 +138,9 @@
138 138
139 139 $name_layout = $this->get_name_layout();
140 140
141 141 if ( ! empty( $atts['show'] ) ) {
142 - return $value[ $atts['show'] ] ?? '';
142 + return isset( $value[ $atts['show'] ] ) ? $value[ $atts['show'] ] : '';
143 143 }
144 144
145 145 $value = wp_parse_args(
146 146 $value,
@@ -253,11 +253,9 @@
253 253 * @param array $args
254 254 * @return void
255 255 */
256 256 public function show_after_default( $args ) {
257 - echo '<div class="frm-mt-xs">';
258 257 parent::show_after_default( $args );
259 - echo '</div>';
260 258
261 259 /**
262 260 * @var array $field
263 261 */