HEX
Server: LiteSpeed
System: Linux linux31.centraldnserver.com 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: salamatk (1501)
PHP: 8.1.33
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open
Upload Files
File: /home/salamatk/public_html/wp-content/plugins/woodmart-plus/template/leave-cart/popup_body.php
<?php $totalCart = $cart_items['total_cart'];
unset($cart_items['total_cart']); ?>

<span class="trick_totalcart" style="display:none;">
    <?php echo wc_price($totalCart); ?>
</span>

<?php foreach ($cart_items as $item): ?>

    <div class="product-item">
        <div class="product-image">
            <img src="<?php echo $item['product_image'] ?>" alt="<?php echo $item['product_title'] ?>">
        </div>
        <div class="product-info">
            <h5>
                <a href="<?php echo $item['product_link']; ?>"><?php echo $item['product_title']; ?></a>
            </h5>
            <div class="product-meta">
                <span class="quantity">
                    <?php
                    printf(__('تعداد : %s', 'woodmartplus'), $item['quantity']);
                    ?>
                </span>
            </div>
        </div>
        <div class="product-price">
            <?php echo wc_price($item['product_price']); ?>
        </div>
    </div>
<?php endforeach; ?>