| Line 1... |
Line 1... |
| 1 |
<?php if(count($cartskus['cartItems'])>0):?>
|
1 |
<?php if(count($cartskus['cartItems'])>0):?>
|
| 2 |
<div class="well text-center emptyCart hidden">
|
2 |
<div class="well text-center emptyCart hidden">
|
| 3 |
Your Cart is Empty. Please go to <a href="<?php echo $base_url;?>category/6">Deals Page</a>
|
3 |
Your Cart is Empty. Please go to <a href="<?php echo $base_url;?>categories/linkdeal/3?filtertype=exclusive">Deals Page</a>
|
| 4 |
</div>
|
4 |
</div>
|
| 5 |
<?php foreach($cartskus['cartItems'] as $cartitem):?>
|
5 |
<?php foreach($cartskus['cartItems'] as $cartitem):?>
|
| 6 |
<div class="card row" sku="<?php echo $cartitem['itemId'];?>">
|
6 |
<div class="card row" sku="<?php echo $cartitem['itemId'];?>">
|
| 7 |
<div class="col-xs-12 cartdetailscard" data-id="<?php echo $cartitem['itemId'];?>" style="padding-right: 0px;" >
|
7 |
<div class="col-xs-12 cartdetailscard" data-id="<?php echo $cartitem['itemId'];?>" style="padding-right: 0px;" >
|
| 8 |
<div class="col-xs-3 cartdetailimage">
|
8 |
<div class="col-xs-3 cartdetailimage">
|
| Line 44... |
Line 44... |
| 44 |
</div>
|
44 |
</div>
|
| 45 |
|
45 |
|
| 46 |
<?php endforeach;?>
|
46 |
<?php endforeach;?>
|
| 47 |
<?php else:?>
|
47 |
<?php else:?>
|
| 48 |
<div class="well text-center">
|
48 |
<div class="well text-center">
|
| 49 |
Your Cart is Empty. Please go to <a href="<?php echo $base_url;?>category/6">Deals Page</a>
|
49 |
Your Cart is Empty. Please go to <a href="<?php echo $base_url;?>categories/linkdeal/3?filtertype=exclusive">Deals Page</a>
|
| 50 |
</div>
|
50 |
</div>
|
| 51 |
<?php endif;?>
|
51 |
<?php endif;?>
|
| 52 |
|
52 |
|