# propertyhive/2.2.2/includes/avada-widgets/property-address-postcode-preview.php

Property Hive, version 2.2.2. 49 lines.

- Page: https://pluginprobe.com/plugins/propertyhive/2.2.2/code/includes/avada-widgets/property-address-postcode-preview.php
- Raw: https://pluginprobe.com/plugins/propertyhive/2.2.2/raw/includes/avada-widgets/property-address-postcode-preview.php
- Modified: 2025-09-08T11:38:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/propertyhive/2.2.2/code/includes/avada-widgets/property-address-postcode-preview.php#L10-L20`.

```php
<?php
/**
 * Underscore.js template.
 *
 * @package fusion-builder
 */

?>
<script type="text/template" id="fusion-builder-block-module-property-address-postcode-preview-template">

	<#
		var text_color        = params.text_color,
			text_transform    = '' !== params.text_transform ? params.text_transform : '',
			iconHtml          = '',
			beforeLabel       = '',
			afterLabel        = '',
			styleTag          = '';

		if ( 'none' !== text_transform ) {
			styleTag += 'text-transform: ' + text_transform + ';';
		}

		if ( text_color && ( -1 !== text_color.indexOf( 'var(--' ) ) ) {
			text_color = getComputedStyle( document.documentElement ).getPropertyValue( text_color.replace( 'var(', '' ).replace( ')', '' ) );
		}

		if ( text_color && ( -1 !== text_color.replace( /\s/g, '' ).indexOf( 'rgba(255,255,255' ) || '#ffffff' === text_color ) ) {
			text_color = '#dddddd';
		}

		if ( params.content_align && '' !== params.content_align ) {
			styleTag += 'text-align: ' + params.content_align + ';';
		}

		if ( params.sep_color && '' !== params.sep_color ) {
			styleTag += 'border-color: ' + params.sep_color + ';';
		}

		if ( text_color ) {
			styleTag += 'color: ' + text_color + ';';
		}
	#>

	<div class="fusion-module-property-address-postcode-preview" style="{{{ styleTag }}}">
		{{{iconHtml}}}{{{beforeLabel}}}Postcode{{{afterLabel}}}
	</div>

</script>

```
