remove price from website
This commit is contained in:
parent
174a7b75f5
commit
174e4ad147
|
|
@ -61,15 +61,16 @@ const CardItem: React.FC<CartItemProps> = ({ data }) => {
|
|||
<h6>
|
||||
<FaTruck /> {t("Free Delivery")}
|
||||
</h6>
|
||||
|
||||
|
||||
<div className="card_price">
|
||||
{/* <p>
|
||||
{price} {Currency}{" "}
|
||||
</p> */}
|
||||
<h6>
|
||||
<MdOutlineVerified /> {t("Guaranteed")}
|
||||
</h6>
|
||||
|
||||
<div className="card_price">
|
||||
<p>
|
||||
{price} {Currency}{" "}
|
||||
</p>
|
||||
|
||||
<div className="count_section">
|
||||
<FaRegTrashAlt
|
||||
onClick={() => {
|
||||
|
|
|
|||
|
|
@ -87,10 +87,10 @@ const CartWithDrawer = () => {
|
|||
<p>
|
||||
{t("Grand Total")}
|
||||
<br />
|
||||
<span>
|
||||
{/* <span>
|
||||
{" "}
|
||||
{calculateTotalPrice()} {Currency}{" "}
|
||||
</span>
|
||||
</span> */}
|
||||
</p>
|
||||
<Button
|
||||
className="cart_checkout_button"
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ const ProductCard = ({ item }: { item: Product }) => {
|
|||
{randomRate} <FaStar />
|
||||
</p>
|
||||
</div> */}
|
||||
<span>{discountAmount}%</span>
|
||||
{/* <span>{discountAmount}%</span> */}
|
||||
<article>
|
||||
<button className="button" onClick={() => handleAddToCart(item)}>
|
||||
<FaCartPlus />
|
||||
|
|
|
|||
|
|
@ -17,9 +17,9 @@ const ProductInfo = (data:any) => {
|
|||
<span>
|
||||
<h6>{t("Category")}</h6> <h5>{languageObject(productInfo?.category?.name)}</h5>
|
||||
</span>
|
||||
<span>
|
||||
{/* <span>
|
||||
<h6>{t("Price")}</h6> <h5>{productInfo?.price}</h5>
|
||||
</span>
|
||||
</span> */}
|
||||
<span>
|
||||
<h6>{t("Description")}</h6> <h5>{languageObject(productInfo?.description)}</h5>
|
||||
</span>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user