| Server IP : 87.98.231.4 / Your IP : 216.73.217.178 [ Web Server : Apache System : Linux webm007.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : grupmartgn ( 667608) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/grupmartgn/elanartcrafts/modules/mod_virtuemart_cart/tmpl/ |
Upload File : |
<?php // no direct access
defined('_JEXEC') or die('Restricted access');
//dump ($cart,'mod cart');
// Ajax is displayed in vm_cart_products
// ALL THE DISPLAY IS Done by Ajax using "hiddencontainer" ?>
<!-- Virtuemart 2 Ajax Card -->
<div class="vmCartModule <?php echo $params->get('moduleclass_sfx'); ?>" id="vmCartModule<?php echo $params->get('moduleid_sfx'); ?>">
<?php
if ($show_product_list) {
?>
<div class="hiddencontainer" style=" display: none; ">
<div class="vmcontainer">
<div class="product_row">
<span class="quantity"></span> x <span class="product_name"></span>
<?php if ($show_price and $currencyDisplay->_priceConfig['salesPrice'][0]) { ?>
<div class="subtotal_with_tax" style="float: right;"></div>
<?php } ?>
<div class="customProductData"></div><br>
</div>
</div>
</div>
<div class="vm_cart_products">
<div class="vmcontainer">
<?php
foreach ($data->products as $product){
?><div class="product_row">
<span class="quantity"><?php echo $product['quantity'] ?></span> x <span class="product_name"><?php echo $product['product_name'] ?></span>
<?php if ($show_price and $currencyDisplay->_priceConfig['salesPrice'][0]) { ?>
<div class="subtotal_with_tax" style="float: right;"><?php echo $product['subtotal_with_tax'] ?></div>
<?php } ?>
</div>
<?php }
?>
</div>
</div>
<?php } ?>
<div class="total" style="float: right;">
<?php if ($data->totalProduct and $show_price and $currencyDisplay->_priceConfig['salesPrice'][0]) { ?>
<?php echo $data->billTotal; ?>
<?php } ?>
</div>
<div class="total_products"><?php echo $data->totalProductTxt ?></div>
<div class="show_cart">
<?php if ($data->totalProduct) echo '<a class="details" style ="float:right;" href="'.$data->cart_show_link.'" rel="nofollow" >'.$data->linkName.'</a>'; ?>
</div>
<div style="clear:both;"></div>
<?php
$view = vRequest::getCmd('view');
if($view!='cart' and $view!='user'){
?><div class="payments-signin-button" ></div><?php
}
?>
<noscript>
<?php echo vmText::_('MOD_VIRTUEMART_CART_AJAX_CART_PLZ_JAVASCRIPT') ?>
</noscript>
</div>