components/Builder/modules/field/PodsBuilderModuleField.php 1 location
|
@@ 117-118 (lines=2) @@
|
| 114 |
|
'field' => trim( pods_var_raw( 'field', $fields[ 'data' ], '' ) ) |
| 115 |
|
); |
| 116 |
|
|
| 117 |
|
if ( 0 < strlen( $args[ 'name' ] ) && 0 < strlen( $args[ 'slug' ] ) && 0 < strlen( $args[ 'field' ] ) ) |
| 118 |
|
echo pods_shortcode( $args, ( isset( $content ) ? $content : null ) ); |
| 119 |
|
} |
| 120 |
|
|
| 121 |
|
} |
components/Builder/modules/list/PodsBuilderModuleList.php 1 location
|
@@ 211-212 (lines=2) @@
|
| 208 |
|
|
| 209 |
|
$content = trim( pods_var_raw( 'template_custom', $fields[ 'data' ], '' ) ); |
| 210 |
|
|
| 211 |
|
if ( 0 < strlen( $args[ 'name' ] ) && ( 0 < strlen( $args[ 'template' ] ) || 0 < strlen( $content ) ) ) |
| 212 |
|
echo pods_shortcode( $args, ( isset( $content ) ? $content : null ) ); |
| 213 |
|
} |
| 214 |
|
|
| 215 |
|
} |
components/Builder/modules/single/PodsBuilderModuleSingle.php 1 location
|
@@ 162-163 (lines=2) @@
|
| 159 |
|
|
| 160 |
|
$content = trim( pods_var_raw( 'template_custom', $fields[ 'data' ], '' ) ); |
| 161 |
|
|
| 162 |
|
if ( 0 < strlen( $args[ 'name' ] ) && 0 < strlen( $args[ 'slug' ] ) && ( 0 < strlen( $args[ 'template' ] ) || 0 < strlen( $content ) ) ) |
| 163 |
|
echo pods_shortcode( $args, ( isset( $content ) ? $content : null ) ); |
| 164 |
|
} |
| 165 |
|
|
| 166 |
|
} |