diff options
| author | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2023-10-18 14:04:48 +0700 |
|---|---|---|
| committer | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2023-10-18 14:04:48 +0700 |
| commit | b0f07da928f1956946fb36db8983718962b6bcee (patch) | |
| tree | ccbc6700bdd22e9ae2f11789ab338efe2e7a0765 /src | |
| parent | a8fb3ca1661297362e5e1a111121dd6a5e54b151 (diff) | |
change label call for price to call for inquiry
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/cart/components/Cartheader.jsx | 2 | ||||
| -rw-r--r-- | src/lib/checkout/components/Checkout.jsx | 4 | ||||
| -rw-r--r-- | src/lib/checkout/components/CheckoutOld.jsx | 4 | ||||
| -rw-r--r-- | src/lib/product/components/Product/ProductDesktop.jsx | 2 | ||||
| -rw-r--r-- | src/lib/product/components/ProductCard.jsx | 8 | ||||
| -rw-r--r-- | src/lib/variant/components/VariantCard.jsx | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/src/lib/cart/components/Cartheader.jsx b/src/lib/cart/components/Cartheader.jsx index 901b1501..b3cf849b 100644 --- a/src/lib/cart/components/Cartheader.jsx +++ b/src/lib/cart/components/Cartheader.jsx @@ -235,7 +235,7 @@ const Cardheader = (cartCount) => { rel='noopener noreferrer' target='_blank' > - Call For Price + Call for Inquiry </a> </span> )} diff --git a/src/lib/checkout/components/Checkout.jsx b/src/lib/checkout/components/Checkout.jsx index e2c1a85b..85221e5d 100644 --- a/src/lib/checkout/components/Checkout.jsx +++ b/src/lib/checkout/components/Checkout.jsx @@ -1069,7 +1069,7 @@ const Checkout = () => { <div className='font-normal mt-1'> {product.price.priceDiscount > 0 ? currencyFormat(product?.price?.priceDiscount) - : 'Call For Price'} + : 'Call for Inquiry'} </div> )} </td> @@ -1090,7 +1090,7 @@ const Checkout = () => { })} className='underline' > - Call For Price{' '} + Call for Inquiry{' '} </a> )} </div> diff --git a/src/lib/checkout/components/CheckoutOld.jsx b/src/lib/checkout/components/CheckoutOld.jsx index 6852059e..d57fbd66 100644 --- a/src/lib/checkout/components/CheckoutOld.jsx +++ b/src/lib/checkout/components/CheckoutOld.jsx @@ -486,7 +486,7 @@ const Checkout = () => { <div className='font-normal mt-1'> {product.price.priceDiscount > 0 ? currencyFormat(product?.price?.priceDiscount) - : 'Call For Price'} + : 'Call for Inquiry'} </div> </td> <td> @@ -501,7 +501,7 @@ const Checkout = () => { })} className='underline' > - Call For Price{' '} + Call for Inquiry{' '} </a> )} </div> diff --git a/src/lib/product/components/Product/ProductDesktop.jsx b/src/lib/product/components/Product/ProductDesktop.jsx index 47e98c1a..aa771eab 100644 --- a/src/lib/product/components/Product/ProductDesktop.jsx +++ b/src/lib/product/components/Product/ProductDesktop.jsx @@ -625,7 +625,7 @@ const ProductDesktop = ({ products, wishlist, toggleWishlist }) => { rel='noopener noreferrer' target='_blank' > - Call for price + Call for Inquiry </a> )} </div> diff --git a/src/lib/product/components/ProductCard.jsx b/src/lib/product/components/ProductCard.jsx index 3b96ac32..bc2174e4 100644 --- a/src/lib/product/components/ProductCard.jsx +++ b/src/lib/product/components/ProductCard.jsx @@ -103,7 +103,7 @@ const ProductCard = ({ product, simpleTitle, variant = 'vertical' }) => { {product?.lowestPrice.priceDiscount > 0 ? ( currencyFormat(product?.lowestPrice.priceDiscount) ) : ( - <a href={callForPriceWhatsapp}>Call for price</a> + <a href={callForPriceWhatsapp}>Call for Inquiry</a> )} </div> </> @@ -118,7 +118,7 @@ const ProductCard = ({ product, simpleTitle, variant = 'vertical' }) => { </div> </> ) : ( - <a href={callForPriceWhatsapp}>Call for price</a> + <a href={callForPriceWhatsapp}>Call for Inquiry</a> )} </div> )} @@ -209,7 +209,7 @@ const ProductCard = ({ product, simpleTitle, variant = 'vertical' }) => { {product?.lowestPrice?.priceDiscount > 0 ? ( currencyFormat(product?.lowestPrice?.priceDiscount) ) : ( - <a href={callForPriceWhatsapp}>Call for price</a> + <a href={callForPriceWhatsapp}>Call for Inquiry</a> )} </div> </> @@ -224,7 +224,7 @@ const ProductCard = ({ product, simpleTitle, variant = 'vertical' }) => { </div> </> ) : ( - <a href={callForPriceWhatsapp}>Call for price</a> + <a href={callForPriceWhatsapp}>Call for Inquiry</a> )} </div> )} diff --git a/src/lib/variant/components/VariantCard.jsx b/src/lib/variant/components/VariantCard.jsx index 64b6d146..6b06bc31 100644 --- a/src/lib/variant/components/VariantCard.jsx +++ b/src/lib/variant/components/VariantCard.jsx @@ -68,7 +68,7 @@ const VariantCard = ({ product, openOnClick = true, buyMore = false }) => { })} className='underline text-danger-500' > - Call For Price{' '} + Call for Inquiry{' '} </a> )} </p> |
