Added a fix.
This commit is contained in:
parent
cb246a1dae
commit
a0ad52a44b
1 changed files with 12 additions and 12 deletions
24
myorders.php
24
myorders.php
|
@ -53,7 +53,7 @@ include "header.php";
|
||||||
<p class="itemNumber">#'.$product_id.'</p>
|
<p class="itemNumber">#'.$product_id.'</p>
|
||||||
<h3>'.$product_title.'</h3>
|
<h3>'.$product_title.'</h3>
|
||||||
|
|
||||||
<p> '.$qty.' x ₹ '.$product_price.'</p>
|
<p> '.$qty.' x $; '.$product_price.'</p>
|
||||||
|
|
||||||
<p class="stockStatus"> Delivered</p>
|
<p class="stockStatus"> Delivered</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -61,7 +61,7 @@ include "header.php";
|
||||||
<div class="prodTotal cartSection"><p>'.$qty.'</p></div>
|
<div class="prodTotal cartSection"><p>'.$qty.'</p></div>
|
||||||
<td>
|
<td>
|
||||||
<div class="prodTotal cartSection">
|
<div class="prodTotal cartSection">
|
||||||
<p>₹ '.$product_price.'</p>
|
<p>'.$product_price.' $</p>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<div class="cartSection removeWrap">
|
<div class="cartSection removeWrap">
|
||||||
|
@ -83,12 +83,12 @@ include "header.php";
|
||||||
</div></div>
|
</div></div>
|
||||||
<div class="subtotal cf">
|
<div class="subtotal cf">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="totalRow"><span class="label">Subtotal</span><span class="value">₹ '.$prev_total.'</span></li>
|
<li class="totalRow"><span class="label">Subtotal</span><span class="value">'.$prev_total.' $</span></li>
|
||||||
|
|
||||||
<li class="totalRow"><span class="label">Shipping</span><span class="value">₹ 0.00</span></li>
|
<li class="totalRow"><span class="label">Shipping</span><span class="value">0.00 $</span></li>
|
||||||
|
|
||||||
<li class="totalRow"><span class="label">Tax</span><span class="value">₹ 0.00</span></li>
|
<li class="totalRow"><span class="label">Tax</span><span class="value">0.00 $</span></li>
|
||||||
<li class="totalRow final"><span class="label">Total</span><span class="value">₹'.$prev_total.'</span></li>
|
<li class="totalRow final"><span class="label">Total</span><span class="value">'.$prev_total.' $</span></li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
@ -104,7 +104,7 @@ include "header.php";
|
||||||
<p class="itemNumber">#'.$product_id.'</p>
|
<p class="itemNumber">#'.$product_id.'</p>
|
||||||
<h3>'.$product_title.'</h3>
|
<h3>'.$product_title.'</h3>
|
||||||
|
|
||||||
<p> '.$qty.' x ₹ '.$product_price.'</p>
|
<p> '.$qty.' x $ '.$product_price.'</p>
|
||||||
|
|
||||||
<p class="stockStatus out"> Shipping</p>
|
<p class="stockStatus out"> Shipping</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -112,7 +112,7 @@ include "header.php";
|
||||||
<div class="prodTotal cartSection"><p>'.$qty.'</p></div>
|
<div class="prodTotal cartSection"><p>'.$qty.'</p></div>
|
||||||
<td>
|
<td>
|
||||||
<div class="prodTotal cartSection">
|
<div class="prodTotal cartSection">
|
||||||
<p>₹ '.$product_price.'</p>
|
<p>'.$product_price.' $</p>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<div class="cartSection removeWrap">
|
<div class="cartSection removeWrap">
|
||||||
|
@ -132,12 +132,12 @@ include "header.php";
|
||||||
</div></div>
|
</div></div>
|
||||||
<div class="subtotal cf">
|
<div class="subtotal cf">
|
||||||
<ul>
|
<ul>
|
||||||
<li class="totalRow"><span class="label">Subtotal</span><span class="value">₹ '.$prev_total.'</span></li>
|
<li class="totalRow"><span class="label">Subtotal</span><span class="value">'.$prev_total.' $</span></li>
|
||||||
|
|
||||||
<li class="totalRow"><span class="label">Shipping</span><span class="value">₹ 0.00</span></li>
|
<li class="totalRow"><span class="label">Shipping</span><span class="value">0.00 $</span></li>
|
||||||
|
|
||||||
<li class="totalRow"><span class="label">Tax</span><span class="value">₹ 0.00</span></li>
|
<li class="totalRow"><span class="label">Tax</span><span class="value">0.00 $</span></li>
|
||||||
<li class="totalRow final"><span class="label">Total</span><span class="value">₹'.$prev_total.'</span></li>
|
<li class="totalRow final"><span class="label">Total</span><span class="value">'.$prev_total.' $</span></li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue