✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ premium290.web-hosting.com ​🇻​♯➤ 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 63.250.38.37 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.105
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/tdhomesa/public_html/wp-content/plugins/elementor-selio/widgets//header-search.php
<?php
namespace ElementorSelio\Widgets;

use Elementor\Widget_Base;
use Elementor\Controls_Manager;
use Elementor\Utils;
use Elementor\Editor;
use Elementor\Plugin;
use Top_Nav_Menu_Walker;

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

/**
 * @since 1.1.0
 */
class Header_Search extends Widget_Base {

	public static $multiple_instance=false;
	
	// Default widget settings
	private $defaults = array(
		array(
			'background_image' => '',
		),
		array(
			'enable_mask_color' => 'yes',
		),
		array(
			'slogan_title' => 'Discover best properties in one place',
		),
		array(
			'alternative_background_video_youtuble_link' => '',
		),
	);

	private $items_num = 4;

	/**
	 * Retrieve the widget name.
	 *
	 * @since 1.1.0
	 *
	 * @access public
	 *
	 * @return string Widget name.
	 */
	public function get_name() {
		return 'header-search';
	}

	/**
	 * Retrieve the widget title.
	 *
	 * @since 1.1.0
	 *
	 * @access public
	 *
	 * @return string Widget title.
	 */
	public function get_title() {
		return __( 'Header Search', 'selio-blocks' );
	}

	/**
	 * Retrieve the widget icon.
	 *
	 * @since 1.1.0
	 *
	 * @access public
	 *
	 * @return string Widget icon.
	 */
	public function get_icon() {
		return 'fa fa-search';
	}

	/**
	 * Retrieve the list of categories the widget belongs to.
	 *
	 * Used to determine where to display the widget in the editor.
	 *
	 * Note that currently Elementor supports only one category.
	 * When multiple categories passed, Elementor uses the first one.
	 *
	 * @since 1.1.0
	 *
	 * @access public
	 *
	 * @return array Widget categories.
	 */
	public function get_categories() {
		return [ 'winter-themes' ];
	}

	/**
	 * Register the widget controls.
	 *
	 * Adds different input fields to allow the user to change and customize the widget settings.
	 *
	 * @since 1.1.0
	 *
	 * @access protected
	 */
	protected function register_controls() {


		if(!isset($this->defaults[0]))return;

		$this->start_controls_section(
			'section_elements',
			[
				'label' => __( 'Block elements', 'selio-blocks' ),
			]
		);

		for($i=0;$i<$this->items_num;$i++)
		{

			$item_elements = $this->defaults[0];

			if(isset($this->defaults[$i]))
			{
				$item_elements = $this->defaults[$i];
			}

			foreach($item_elements as $key=>$val)
			{

				$gen_item = 'item_'.($i+1).'_'.$key;

				$gen_label = ucwords(str_replace('_', ' ', $key));

				if(substr_count($key, 'alternative_background_video_youtuble_link') > 0)
				{
					$this->add_control(
						$gen_item,
						[
							'label' => $gen_label,
							'type' => Controls_Manager::TEXTAREA,
							'default' => $val,
						]
					);
				}
				elseif(substr_count($key, 'link') > 0)
				{
					$this->add_control(
						$gen_item,
						[
							'label' => $gen_label,
							'type' => Controls_Manager::TEXT,
							'default' => $val,
						]
					);
				}
				elseif(substr_count($key, 'enable') > 0)
				{
					$this->add_control(
						$gen_item,
						[
							'label' => $gen_label,
							'type' => Controls_Manager::SWITCHER,
							'default' => $val,
						]
					);
				}
                                elseif(substr_count($key, 'background_image') > 0)
				{
                                    $this->add_control(
                                            $gen_item,
                                            [
                                                    'label' => __( 'Add Background Images', 'selio-blocks' ),
                                                    'type' => \Elementor\Controls_Manager::GALLERY,
                                                    'default' => [
                                                                [
                                                                        'id' => 'sw1',
                                                                        'url' => SELIO_THEMEROOT.'/assets/images/banner/1.jpg'
                                                                ]
                                                        ]

                                            ]
                                    );
                                }
				elseif(substr_count($key, 'image') > 0)
				{
					$this->add_control(
						$gen_item,
						[
							'label' => $gen_label,
							'type' => Controls_Manager::MEDIA,
							'default' => [
								'url' => Utils::get_placeholder_image_src(),
							]
						]
					);
				}
				elseif(substr_count($key, 'description') > 0)
				{
					$this->add_control(
						$gen_item,
						[
							'label' => $gen_label,
							'type' => Controls_Manager::TEXT,
							'default' => $val,
						]
					);
				}
				else
				{
					$this->add_control(
						$gen_item,
						[
							'label' => $gen_label,
							'type' => Controls_Manager::TEXT,
							'default' => $val,
						]
					);
				}
			}
		}

		$this->add_control(
			'area_padding_top',
			[
				'label' => __( 'Padding top', 'yordy-blocks' ),
				'type' => Controls_Manager::NUMBER,
				'default' => '',
			]
		);

		$this->add_control(
			'area_padding_bottom',
			[
				'label' => __( 'Padding bottom', 'yordy-blocks' ),
				'type' => Controls_Manager::NUMBER,
				'default' => '',
			]
		);
		$this->end_controls_section();
	}

	/**
	 * Render the widget output on the frontend.
	 *
	 * Written in PHP and used to generate the final HTML.
	 *
	 * @since 1.1.0
	 *
	 * @access protected
	 */
	protected function render() {
        $settings = $this->get_settings();
        
		if(self::$multiple_instance === true)
		{
			echo '<div class="alert alert-info" role="alert" style="margin-top:20px;">'
				.__('Multiple instance not allowed for: ','selio-blocks').' '.$this->get_title()
				.'</div>';
				
                        return;
                }
		
                if(!function_exists('sw_win_load_ci_frontend'))
		{
			echo '<div class="alert alert-info" role="alert" style="margin-top:20px;">'
				.$this->get_title().' '.__('Avaible only with Visual Listings - Agency Directory and Management Plugin ','selio-blocks')
				.'</div>';
				
                        return;
                }
                if(empty($settings['item_1_background_image'])) {
                    $settings['item_1_background_image'] = array();
                    $settings['item_1_background_image'][0]['url'] = SELIO_THEMEROOT.'/assets/images/banner/1.jpg';
                }
		for($i=0;$i<$this->items_num;$i++)
		{

			$item_elements = $this->defaults[0];

			if(isset($this->defaults[$i]))
			{
				$item_elements = $this->defaults[$i];
			}

			foreach($item_elements as $key=>$val)
			{

				$gen_item = 'item_'.($i+1).'_'.$key;

                if(substr_count($gen_item, 'title') > 0 ||
                   substr_count($gen_item, 'address') > 0 ||
                   substr_count($gen_item, 'number') > 0 )
				{

					$this->add_inline_editing_attributes( $gen_item, 'basic' );
					$this->add_render_attribute( $gen_item, [
						'class' => ''
					] );
				}
				elseif(substr_count($gen_item, 'description') > 0)
				{
					$this->add_inline_editing_attributes( $gen_item, 'basic' );
					$this->add_render_attribute( $gen_item, [
						'class' => ''
					] );
                            }
				else
				{

				}

			}
		}
                
                      
                if(!empty($settings['area_padding_top'])){
                    $custom_css = "
                            .elementor-element-".esc_attr($this->get_id())." .banner.section-header-search {
                                padding-top: " . esc_attr($settings['area_padding_top']) . "px;
                            }
                            .banner {
                                min-height: 200px !important;
                            }
                        ";
                    echo "<style>".$custom_css."</style>";
                }
                
                if(!empty($settings['area_padding_bottom'])){
                    $custom_css = "
                            .elementor-element-".esc_attr($this->get_id())." .banner.section-header-search {
                                padding-bottom: " . esc_attr($settings['area_padding_bottom']) . "px;
                            }
                                .banner {
                                min-height: 200px !important;
                            }
                        ";
                    echo "<style>".$custom_css."</style>";
                }
                
                wp_enqueue_script('sw_win_b3_typeahead',plugins_url(SW_WIN_SLUG.'/assets/js/typeahead/bootstrap3-typeahead.js', SW_WIN_PLUGIN_PATH), array('jquery'));
		
                /*
			Fetch listings data
		*/
		
		sw_win_load_ci_frontend();
                $CI = &get_instance();
                // [Load custom view from template]
                if(is_child_theme() && file_exists(get_stylesheet_directory().'/SW_Win_Classified/views/'))
                {
                    $CI->load->add_package_path(get_stylesheet_directory().'/SW_Win_Classified/');
                } 
                else if(file_exists(get_template_directory().'/SW_Win_Classified/views/')) 
                {
                    $CI->load->add_package_path(get_template_directory().'/SW_Win_Classified/');
                }
                // [/Load custom view from template]

		/*
			Fetch listings data
		*/
                
                        
                $tabs_purpose = false;
                if(isset($instance['tabs_purpose_select']) && !empty($instance['tabs_purpose_select']) ) {
                    $class .= ' on-tabs';
                    $tabs_purpose = $instance['tabs_purpose_select'];
                }

                $tabs_purpose = 'purposes';
                if($tabs_purpose){
                $CI->load->model('field_m');
                $CI->load->model('treefield_m');

                $custom_js = '';
                if($tabs_purpose=='purposes'){
                    $field_data = $CI->field_m->get_field_data(4,sw_current_language_id());

                    if(empty($field_data)) {
                        echo '<div class="clearfix"></div><div class="alert alert-danger">';
                        echo '"'.esc_html($args['widget_name']).'" '.esc_html__("Tabs purpose can't load, missing field 4 (Purpose)",'selio-blocks');
                        echo '</div>';
                        return;
                    }

                    $values_available = explode(',', (string)$field_data->values);
                    $values_available = array_combine($values_available, $values_available);
                    $values_available[''] = __('Any', 'selio-blocks');

                    $custom_js .="
                                    jQuery(document).ready(function($){
                                        $('form.sw_search_primary').find('.field_search_4').remove();

                                        $('form.sw_search_primary').append('<input id=\"search_4\" name=\"search_4\" type=\"text\" class=\"hidden\" value=\"".esc_html(search_value('4'))."\" />')

                                        $('.menu-onmap.tabbed-selector a').click(function(e){
                                            e.preventDefault();
                                            var val = $(this).attr('data-value');
                                            $('.menu-onmap.tabbed-selector a').removeClass('active');
                                            $(this).addClass('active');
                                            $('form.sw_search_primary').find('[name=\"search_4\"]').val(val).change();
                                        })
                                    })
                                ";
                }

                if($tabs_purpose=='categories'){
                $field_id = 1;
                $treefield_table = $CI->treefield_m->get_all_list(array('field_id'=>$field_id, 'parent_id'=>0));

                $values_available = array();
                $values_available[''] = __('Any', 'selio-blocks');
                foreach ($treefield_table as $key => $value) {
                    $values_available[$value->idtreefield] = $value->value;
                }

                $custom_js .="
                        jQuery(document).ready(function($){
                            $('form.sw_search_primary').find('.group_category_id ').hide()

                            if(!$('form.sw_search_primary').find('.group_category_id ').length)
                                $('form.sw_search_primary').append('<input id=\"wintreeelem_0\" name=\"search_category\" type=\"text\" class=\"hidden\" value=\"".esc_html(search_value('search_category'))."\" />')


                            $('.widget-search-ads-searcharea .tabs-purpose a').click(function(e){
                                e.preventDefault();
                                var val = $(this).attr('data-value');
                                $('.widget-search-ads-searcharea .tabs-purpose a').removeClass('active');
                                $(this).addClass('active');

                                if($('.group_category_id .winter_dropdown_tree').length){
                                    var dropdown = $('.group_category_id .winter_dropdown_tree');
                                    if(dropdown && dropdown.length)
                                        dropdown.find('.list_items li[key=\"'+val+'\"]').trigger('click');
                                    else
                                        $('form').find('[name=\"search_category\"]').val(val);
                                }

                            })
                        })
                    ";

                }
                selio_add_into_inline_js( 'screenshot', $custom_js, true);
                }

		?>
<h2 class="vis-hid"><?php echo esc_html__('Headser elementor','selio-blocks');?></h2>
<?php if(sw_count($settings['item_1_background_image']) == 1):?>
    <section class="banner section-header-search <?php if($settings['item_2_enable_mask_color'] == ''): ?> no-mask <?php endif;?>" style="background-image:url('<?php echo $settings['item_1_background_image'][0]['url']; ?>')">
<?php else:?>
    <section class="banner banner_slider section-header-search <?php if($settings['item_2_enable_mask_color'] == ''): ?> no-mask <?php endif;?>" style="background-image:url('<?php echo $settings['item_1_background_image'][0]['url']; ?>')">
        <div class="header-bkg-slider">
            <?php foreach ($settings['item_1_background_image'] as $slide):?>
                <img src="<?php echo esc_url($slide['url']);?>" alt="<?php echo esc_html(selio_el_get_image_alt($slide['id']));?>

">
            <?php endforeach;?>
        </div>
<?php endif;?>
    
    <?php if(!empty($settings['item_4_alternative_background_video_youtuble_link'])):?>
    <?php
    $href = $input = $settings['item_4_alternative_background_video_youtuble_link'];
    if(strpos($input, 'watch?v=') !== FALSE)
    {
        $embed_code = substr($input, strpos($input, 'watch?v=')+8);
        $href= 'https://www.youtube.com/embed/'.$embed_code;
    }
    // version for youtube link
    elseif(strpos($input, 'youtu.be/') !== FALSE)
    {
        $embed_code = substr($input, strpos($input, 'youtu.be/')+9);
        $href= 'https://www.youtube.com/embed/'.$embed_code;
    }
    
    
    
    
    ?>
<div class="video-background">
    <div class="video-foreground">
      <iframe controls="0" autoplay="1" loop="1" allow="autoplay;loop;" 
        src="<?php echo $href;?>?controls=0&showinfo=0&rel=0&autoplay=1&loop=1&mute=1" frameborder="0" allowfullscreen></iframe>
    </div>
</div>
<?php endif;?>
    
    <div class="container">
	<div class="row">
		<div class="col-lg-12">
			<div class="banner-content">
				<h2 <?php echo $this->get_render_attribute_string( 'item_3_slogan_title' ); ?>><?php echo $settings['item_3_slogan_title']; ?></h2>
			</div>
                    <?php if(Plugin::$instance->editor->is_edit_mode()): ?>
                        <form action="#" class="row banner-search">
				<div class="form_field addres banner_search_show">
					<input type="text" class="form-control" placeholder="Enter Address, City or State">
				</div>
				<div class="form_field tpmax banner_search_show">
					<div class="form-group">
						<div class="drop-menu">
							<div class="select">
								<span>Any type</span>
								<i class="fa fa-angle-down"></i>
							</div>
							<input type="hidden" name="gender">
							<ul class="dropeddown">
								<li>For Sale</li>
								<li>For Rent</li>
							</ul>
						</div>
					</div>
				</div>
				<div class="form_field tpmax banner_search_show">
					<div class="form-group">
						<div class="drop-menu">
							<div class="select">
								<span>Min Price</span>
								<i class="fa fa-angle-down"></i>
							</div>
							<input type="hidden" name="gender">
							<ul class="dropeddown">
								<li>300$</li>
								<li>400$</li>
								<li>500$</li>
								<li>200$</li>
								<li>600$</li>
							</ul>
						</div>
					</div>
				</div>
				<div class="form_field tpmax banner_search_show">
					<div class="form-group">
						<div class="drop-menu">
							<div class="select">
								<span>Max Price</span>
								<i class="fa fa-angle-down"></i>
							</div>
							<input type="hidden" name="gender">
							<ul class="dropeddown">
								<li>2000</li>
								<li>3000</li>
								<li>4000</li>
								<li>5000</li>
								<li>6000</li>
							</ul>
						</div>
					</div>
				</div>
				<div class="form_field srch-btn">
					<a href="#" class="btn btn-outline-primary ">
						<i class="la la-search"></i>
						<span>Search</span>
					</a>
				</div>
			</form>
			<?php else:?>
	<form action="#" class="row banner-search sw_search_primary banner-search_init ">
		<?php if(function_exists('sw_user_in_role') && sw_user_in_role('administrator')):?>
			<div class="section-widget-control">
				<a class="sw-c-btn sw-c-edit" href="<?php echo esc_url(admin_url('admin.php?page=listing_searchform'));?>" title="<?php echo esc_attr_e('Edit search form', 'selio'); ?>" target="_blank"><i class="fa fa-pencil"></i></a>
			</div>
		<?php endif;?>
				<?php

					global $selio_filter_search_slidetoggle;
					$selio_filter_search_slidetoggle=false;

					global $selio_filter_search_slidetoggle_enable;
					$selio_filter_search_slidetoggle_enable = true;
					global $selio_filter_search_slidetoggle_slim;


					
					global $selio_button_search_defined;
					$selio_button_search_defined=false;
				?>
				<div class="banner-search_box banner-search row">
				<?php if($tabs_purpose && $values_available):?>
				<ul class="menu-onmap tabbed-selector <?php if(sw_count($values_available)<7):?> on-h <?php endif;?>">
					<?php foreach ($values_available as $key => $value):?>
						<li class="item"><a href="#" class="<?php if(esc_html(search_value('4')) == $key): ?>active<?php endif;?>" data-value="<?php echo esc_html($key);?>"><?php echo esc_html($value);?></a></li>
					<?php endforeach;?>
				</ul>
				<?php endif;?>
					<style>
						.banner-content {
							margin-bottom: 65px;
						}

					.form_sec {
							padding-top: 70px;
						}

						@media (max-width: 767px){
							.banner-content {
								margin-bottom: 20px;
							}
						}
					</style>
					<?php _search_form_primary(1); ?>
					<?php global $selio_filter_search_slidetoggle; if(!$selio_filter_search_slidetoggle): ?>
					<div class="form_field srch-btn">
						<button id="search_header_button" type="submit" class="btn btn-outline-primary ">
								<i class="la la-search"></i>
								<span> <?php esc_html_e('Search', 'selio-blocks');?></span>
								<i class="fa fa-spinner fa-spin fa-ajax-indicator" style="display: none;"></i>
						</button>
					</div>
					<?php else: ?>
					</div>
					<?php endif; ?>
				
					</div>
				</form>
			<?php endif;?>
		</div>
	</div>
</div>
</section>
	<?php if(Plugin::$instance->editor->is_edit_mode()): ?>
	<script>	
	</script>
	<?php endif; ?>
	<script>	
		jQuery(document).ready(function($){
                    if(typeof $.fn.typeahead  === 'function'){
                    $('#location,#search_where').typeahead({
                        minLength: 2,
                        source: function(query, process) {
                            var data = { q: query, limit: 8 };

                            $.extend( data, {
                               'page': 'frontendajax_locationautocomplete',
                               'action': 'ci_action',
                               'template': '<?php echo esc_html(basename(get_page_template()));?>'
                            });

                            $.post('<?php echo esc_url(admin_url( 'admin-ajax.php' ));?>', data, function(data) {
                                //console.log(data); // data contains array
                                process(data);
                            });
                        }
                    });
                    }

			jQuery('#search_header_button').on('click',function(){
                                jQuery(this).find(".fa-ajax-indicator").show();
                                jQuery(this).find(".fa-ajax-hide").hide();
				//Define default data values for search
				var data = { };
				
				// Add custom data values, automatically by fields inside search-form
				jQuery('form.sw_search_primary input, form.sw_search_primary select, '+
				'form.sw_search_secondary input, form.sw_search_secondary select').each(function (i) {
					
					if(jQuery(this).attr('type') == 'checkbox')
					{
						if (jQuery(this).attr('checked'))
						{
							data[jQuery(this).attr('name')] = jQuery(this).val();
						}
					}
					else if(jQuery(this).val() != '' && jQuery(this).val() != 0&& jQuery(this).val() != null)
					{
						data[jQuery(this).attr('name')] = jQuery(this).val();
					}
					
				});

				<?php
				$page_link = '';
				
				// get results page ID
				$results_page_id = sw_settings('results_page');
				if(!empty($results_page_id))
				{
					// get results page link
					$page_link = get_page_link($results_page_id);
				}
					
				?>
				
				var gen_url = selio_generateUrl("<?php echo $page_link; ?>", data)+"#header-search";

				window.location = gen_url;

				return false;
			});


		});

		function selio_generateUrl(url, params) {
			var i = 0, key;
			for (key in params) {
				if (i === 0 && url.indexOf("?")===-1) {
					url += "?";
				} else {
					url += "&";
				}
				url += key;
				url += '=';
				url += params[key];
				i++;
			}
			return url;
		}

            </script>
	<?php
	
		self::$multiple_instance = true;
	}


}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
22 Jun 2026 6.38 AM
tdhomesa / tdhomesa
0755
about-features.php
23.691 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
agents.php
20.381 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
blog-grid.php
9.356 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
carousel-purposes.php
24.622 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
categories-listings.php
7.597 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
categories-presentation.php
10.026 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
clients-say.php
11.321 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
contact-featured.php
28.683 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
contact-section.php
17.065 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
header-search.php
22.835 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
header-slider-listing.php
13.477 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
header-static.php
6.906 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
header-title.php
7.849 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
latest-posts.php
9.082 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
map-full-width.php
28.66 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
map-svg-area.php
40.32 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
map-svg.php
38.443 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
navigation-over-image.php
38.217 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
partners-agencies.php
9.411 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
placeholder-footer.php
7.348 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
popular-cities.php
25.512 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
popular-listings.php
28.91 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
post-slider.php
9.744 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
pricing-packages.php
9.74 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
result-listings.php
5.813 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
section-subscriptions.php
9.603 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
services-you-need.php
23.69 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
single-apartment.php
15.194 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
slogan.php
8.02 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
top-bar.php
11.326 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
top-navigation-white.php
12.387 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
video-feature.php
8.556 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644
wide-search.php
14.575 KB
30 Apr 2025 12.44 PM
tdhomesa / tdhomesa
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF