HEX
Server: LiteSpeed
System: Linux standart103.isimtescil.net 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: byildiz (11197)
PHP: 8.2.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/byildiz.com.tr/httpdocs/wp-content/themes/lumex/template-parts/order-call-modal.php
<?php
/**
 * Template part for displaying order call window
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package lumex
 */

?>

<?php

$ordercall_window_title = get_field( 'ordercall_window_title', 'options' );
$ordercall_window_metform = get_field( 'ordercall_window_metform', 'options' );
$ordercall_window_bgimage = get_field( 'ordercall_window_bgimage', 'options' );

?>

<div class="mil-order-call-window">
    <div class="mil-ocw-content">
        <div class="row g-0 mil-aic">
            <div class="col-lg-7">
                <?php if ( $ordercall_window_title ) : ?>
                <h4 class="mil-mb-4"><?php echo wp_kses_post( $ordercall_window_title ); ?></h4>
                <?php endif; ?>
                <?php if ( $ordercall_window_metform ) :
                    echo do_shortcode( '[metform form_id="' . $ordercall_window_metform . '"]' );
                endif; ?>
            </div>
            <div class="col-lg-5">
                <div class="mil-popup-banner">
                    <?php if ( $ordercall_window_bgimage ) : $image = wp_get_attachment_image_url( $ordercall_window_bgimage, 'lumex_950xAuto' ); $image_alt = get_post_meta( $ordercall_window_bgimage, '_wp_attachment_image_alt', true); if ( empty( $image_alt ) ) : $image_alt = __( 'image', 'lumex' ); endif; ?>
                    <img src="<?php echo esc_url( $image ); ?>" alt="<?php echo esc_attr( $image_alt ); ?>" class="mil-ocw-img" />
                    <?php endif; ?>
                    <button class="mil-close-popup"><i class="fal fa-times"></i></button>
                </div>
            </div>
        </div>
    </div>
</div>