/home/awneajlw/www/wp-content/themes/codz/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 codz
 */

?>

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

<?php
if ( ! class_exists( 'ReduxFrameworkPlugin' ) || ( is_404() ) || ( is_search() ) ) {
	include get_parent_theme_file_path( 'inc/footer/footer-style-default.php' );
} else {
    wp_reset_postdata();

	$footerBuilder_id      = esc_html( get_post_meta( $post->ID, 'custom_footer', true ) );
	if ( $footerBuilder_id ) {
		 $template = get_page_by_path( $footerBuilder_id, OBJECT, 'elementor_library' );
		echo '<!-- wraper_footer -->';
		if ( true == codz_global_var( 'footer_custom_stucking', '', false ) && ! wp_is_mobile() ) {
			echo '<div class="footer-custom-stucking-container"></div>
              <footer class="wraper_footer custom-footer footer-custom-stucking-mode">';
		} else {
			echo '<footer class="wraper_footer custom-footer">';
		}
		echo "<div class='container'>";
		echo Elementor\Plugin::instance()->frontend->get_builder_content_for_display( $template->ID );
		echo '</div>';
		echo '</footer>';
		echo '<!-- wraper_footer -->';
	} else {
		include get_parent_theme_file_path( 'inc/footer/footer-style-default.php' );
	}
}
?>

</div>
<!-- radiantthemes-website-layout -->

<?php wp_footer(); ?>

</body>
</html>