HEX
Server: LiteSpeed
System: Linux cpir1.prohostdns.com 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
User: pelakir (2976)
PHP: 8.2.31
Disabled: exec, shell_exec, system, passthru, proc_open, proc_close, proc_terminate, proc_get_status, popen, pclose, pcntl_exec
Upload Files
File: //home/pelakir/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; ?>