HEX
Server: Apache
System: Linux pdx1-shared-a2-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: dh_hwg2wc (6369923)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/dh_hwg2wc/fnaluxury.com_20241117233659/wp-content/themes/houzez/sidebar-property.php
<?php
global $post;
$agent_form = houzez_option('agent_form_sidebar');
$agent_form_sidebar_tabs = houzez_option('agent_form_sidebar_tabs');
$sidebar_meta = houzez_get_sidebar_meta(houzez_postid());

if( isset( $_GET['agent_form']) && $_GET['agent_form'] == 'yes' ) {
    $agent_form = 1;
}
?>

<aside id="sidebar" class="sidebar-wrap">
    <?php
    if( is_singular('property') ) { 

        if( $agent_form != 0 ) {

            if( $agent_form_sidebar_tabs == 1 ) {
                get_template_part( 'property-details/agent', 'form-tabs' );
            } else {
                get_template_part( 'property-details/agent', 'form' );
            }
            
        } 

        if( is_active_sidebar( 'single-property' ) ) {
            dynamic_sidebar( 'single-property' );
        }
    } else {
        if( $sidebar_meta['specific_sidebar'] == 'yes' ) {
            if( is_active_sidebar( $sidebar_meta['selected_sidebar'] ) ) {
                dynamic_sidebar( $sidebar_meta['selected_sidebar'] );
            }
        } else {
            if( is_active_sidebar( 'property-listing' ) ) {
                dynamic_sidebar( 'property-listing' );
            }
        }
    }

    ?>
</aside>