# Field Content Template
Elementor Pro AdvancedWhen rendering widgets we have a PHP template and a JS template. However, form field rendering only has the PHP template, without the JS template. External developers can use a workaround to overcome this barrier.
# Rendering JS Template
The following code is a simple workaround to render a JS template inside the Elementor editor.
<?php
class Elementor_Test_Field extends \ElementorPro\Modules\Forms\Fields\Field_Base {
public function __construct() {
parent::__construct();
add_action( 'elementor/preview/init', [ $this, 'editor_preview_footer' ] );
}
public function editor_preview_footer() {
add_action( 'wp_footer', [ $this, 'content_template_script' ] );
}
public function content_template_script() {
?>
<script>
jQuery( document ).ready( () => {
elementor.hooks.addFilter(
'elementor_pro/forms/content_template/field/<?php echo $this->get_type(); ?>',
function ( inputField, item, i ) {
const fieldType = 'text';
const fieldId = `form_field_${i}`;
const fieldClass = `elementor-field-textual elementor-field ${item.css_classes}`;
const title = "<?php echo esc_html__( 'Some text...', 'textdomain' ); ?>";
return `<input type="${fieldType}" id="${fieldId}" class="${fieldClass}" title="${title}">`;
}, 10, 3
);
});
</script>
<?php
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Please Note
- The workaround described above is a temporary solution.
- We may introduce an official
content_template()
method to render JS templates, the same as is done for Elementor widgets. - To make sure your code is future compatible, make sure your field class doesn't have a method called
content_template()
.