HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/buildff/public_html/wp-content/themes/essentials/footer.php
<?php

/**
 * The template for displaying the footer
 *
 * Contains the closing of the #content div and all content after.
 *
 * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
 *
 * @package essentials
 */

$pix_sticky = '';
$pix_sticky_bg = '';
$pix_sticky_color = '';
$place_bg = '';
$place_style = '';
if (pix_get_option('pix-sticky-footer')) {
	$pix_sticky = 'pix-sticky-footer';
	if (pix_get_option('sticky-footer-bg-color')) {
		$pix_sticky_bg = pix_get_option('sticky-footer-bg-color');
		if (pix_get_option('sticky-footer-bg-color') == 'custom' && pix_get_option('custom-sticky-footer-bg-color')) {
			$pix_sticky_color = pix_get_option('custom-sticky-footer-bg-color');
		}
	}
	if (pix_get_option('pix-body-bg-color')) {
		if (pix_get_option('pix-body-bg-color') != 'custom') {
			$place_bg = ' bg-' . pix_get_option('pix-body-bg-color');
		} else {
			$place_style .= 'background: ' . pix_get_option('custom-body-bg-color') . ';';
		}
	}
?>
	<div class="pix-footer-sticky-placeholder <?php echo esc_attr($place_bg); ?> w-100 d-block" style="<?php echo esc_attr($place_style); ?>"></div>
<?php
}
?>

<?php
$footer = false;
if (!empty(pix_get_option('pix-footer'))) {
	$footer = pix_get_option('pix-footer');
}

$pagePostTypes = array('page', 'post', 'portfolio');
$pagePostTypes = apply_filters('pixfort_page_options_post_types', $pagePostTypes);
if (in_array(get_post_type(), $pagePostTypes) && get_post_meta(get_the_ID(), 'pix-page-footer', true)) {
	$footer = get_post_meta(get_the_ID(), 'pix-page-footer', true);
}
if (is_404()) {
	if (!empty(pix_get_option('pix-enable-custom-404')) && !empty(pix_get_option('pix-custom-404-page'))) {
		$custom404 = pix_get_option('pix-custom-404-page');
		if (function_exists('icl_get_languages')) {
			$custom404 = apply_filters('wpml_object_id', $custom404, 'page', true);
		}
		if ($custom404 && get_post_meta($custom404, 'pix-page-footer', true)) {
			$single_header = get_post_meta($custom404, 'pix-page-footer', true);
		}
	}
}
if ($footer == 'disable') {
	$footer = false;
}

if(get_post_type()==='elementor_library'){ $footer = false; }
$containerClass = 'container';
if($footer){
	if (class_exists('\Elementor\Plugin')) {
		$footerID = $footer;
		if (function_exists('icl_get_languages')) {
			$footerID = apply_filters('wpml_object_id', $footer, 'pixfooter', true);
		}
		if (Elementor\Plugin::instance()->db->is_built_with_elementor($footerID)) {
			if (empty(pix_get_option('pix-add-default-container'))) {
				$containerClass = 'container-fluid px-0 mx-0';
			}
		}
	}
}


?>

<footer id="pix-page-footer" class="site-footer2 <?php echo esc_attr($pix_sticky); ?> bg-white my-0 py-0" data-sticky-bg="<?php echo esc_attr($pix_sticky_bg); ?>" data-sticky-color="<?php echo esc_attr($pix_sticky_color); ?>">
	<div class="<?php echo esc_attr($containerClass); ?> my-0 py-0">
		<div class="row my-0 py-0">
			<div class="col-12 my-0 py-0">
				<?php

				if (function_exists('elementor_theme_do_location') && elementor_theme_do_location('footer')) {
					elementor_theme_do_location('footer');
					$footer = false;
				}
				if ($footer) {
					if (function_exists('icl_get_languages')) {
						$correct_id = apply_filters('wpml_object_id', $footer, 'pixfooter', true);
						$footer = $correct_id;
						$post = get_post($correct_id);
					} else {
						$post = get_post($footer);
					}

					$wbp_footer_default = true;
					$built_with_elementor = false;
					if (class_exists('\Elementor\Plugin')) {
						if (Elementor\Plugin::instance()->db->is_built_with_elementor($footer)) {
							$wbp_footer_default = false;
							$built_with_elementor = true;
						}
					}
					if (defined('WPB_VC_VERSION') && $wbp_footer_default) {
						// WP Bakery
						if (is_user_logged_in()) {
							echo do_shortcode(get_post_field('post_content', $post));
						} else {
							echo apply_filters('the_content', do_shortcode(get_post_field('post_content', $post)));
						}
					} else {
						// Elementor
						if (get_post_status($footer)) {
							if (get_post_type($footer) === 'pixfooter') {
								setup_postdata($footer);
								if (!empty(pix_get_option('pix-enable-elementor-loader')) && pix_get_option('pix-enable-elementor-loader')) {
									if ($built_with_elementor) {
										echo \Elementor\plugin::instance()->frontend->get_builder_content($footer, true);
									}
								} else {
									the_content();
								}
							}
						}
					}
					wp_reset_postdata();
				}
				?>
			</div>
		</div>
	</div>
</footer>

</div><!-- #page -->

<script>
	var global = global || window;
</script>
<?php wp_footer(); ?>
</body>

</html>