| Line 2... |
Line 2... |
| 2 |
<div class="row">
|
2 |
<div class="row">
|
| 3 |
<?php if(!empty($myfavorites)):?>
|
3 |
<?php if(!empty($myfavorites)):?>
|
| 4 |
<?php //debug($myfavorites);?>
|
4 |
<?php //debug($myfavorites);?>
|
| 5 |
<?php foreach ($myfavorites as $key => $product):?>
|
5 |
<?php foreach ($myfavorites as $key => $product):?>
|
| 6 |
<div class="row suborder">
|
6 |
<div class="row suborder">
|
| 7 |
<div class="col-xs-3 product_image img img-responsive">
|
7 |
<div class="col-xs-4 product_image img img-responsive">
|
| 8 |
<?php if(!empty($product['StoreProduct']['thumbnail'])):?>
|
8 |
<?php if(!empty($product['StoreProduct']['thumbnail'])):?>
|
| 9 |
<img src="<?php echo $base_url;?>app/webroot/timthumb.php?h=120&src=<?php echo $product['StoreProduct']['thumbnail'];?>" alt="<?php echo $product['StoreProduct']['title'];?>" class="productthumb"/>
|
9 |
<img src="<?php echo $base_url;?>app/webroot/timthumb.php?h=120&src=<?php echo $product['StoreProduct']['thumbnail'];?>" alt="<?php echo $product['StoreProduct']['title'];?>" class="productthumb"/>
|
| 10 |
<?php else:?>
|
10 |
<?php else:?>
|
| 11 |
<img src="<?php echo $base_url;?>timthumb.php?src=<?php echo $base_url;?>img/noimage.png&h=80" alt="<?php echo $product['StoreProduct']['title'];?>"/>
|
11 |
<img src="<?php echo $base_url;?>timthumb.php?src=<?php echo $base_url;?>img/noimage.png&h=80" alt="<?php echo $product['StoreProduct']['title'];?>"/>
|
| 12 |
<?php endif;?>
|
12 |
<?php endif;?>
|
| 13 |
</div>
|
13 |
</div>
|
| 14 |
<div class="col-xs-9">
|
14 |
<div class="col-xs-8">
|
| 15 |
<h4><?php echo $product['StoreProduct']['title'];?></h4>
|
15 |
<h4><?php echo $product['StoreProduct']['title'];?></h4>
|
| 16 |
<p class="product_prices">
|
16 |
<p class="product_prices">
|
| 17 |
<span class="rupee"></span><span class="product_price"><?php echo $product['StoreProduct']['mrp'];?></span>
|
17 |
<span class="rupee"></span><span class="product_price"><?php echo $product['StoreProduct']['mrp'];?></span>
|
| 18 |
<span class="deal_price">
|
18 |
<span class="deal_price">
|
| 19 |
<span class="rupee"></span>
|
19 |
<span class="rupee"></span>
|
| Line 25... |
Line 25... |
| 25 |
</div>
|
25 |
</div>
|
| 26 |
</div>
|
26 |
</div>
|
| 27 |
<?php endforeach;?>
|
27 |
<?php endforeach;?>
|
| 28 |
<?php endif;?>
|
28 |
<?php endif;?>
|
| 29 |
</div>
|
29 |
</div>
|
| 30 |
</div>
|
- |
|
| 31 |
|
30 |
</div>
|
| - |
|
31 |
|