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