I'm new to magento. I have one product having tier prices as follows:
a) 500 and above -> $46
b) 1000 and above -> $43
c) 1500 and above -> $39
And the Price(Actual) of product is $46. So on product detail page,
It's not showing the first tier price (a). See below:
Buy 1000 for $43 each and save 7%
Buy 2500 for $39 each and save 16%
Though the Actual price and minimum tier price are same, how can I display the minimum tier price in the above list. Please help. Thanks in advance.
Make sure your base product price is bigger then $46... If your base product price is lower then the tier price, the tier price wont show up.
Related
I am working on e-commerce website in PHP (Code-igniter framework). i am facing one challenge.
The Problem detail is
I have product (name: xyz). the quantity of xyz product is 30 and it's each xyz product price is 120. then i buy more quantity (150 quantity) of xyz product at price 100.
if I show on website xyz product with price 120 (old price) and
total stock remaining 180 then user will not buy because price is
high and user will buy to another website.
if I show on website xyz product with price 100 (latest price)
and total stock remaining 180 then i lost 600 dollars (20 price x 30
quantity)
What can i do to solve this problem ?
Please provide any suggestion about this problem
For such purposes, you can use SKU.
In your case, this is worth 1 product but with different price, as the purchase price was different. More details can be written here. Good luck!
i have solved the issue
if I show on website xyz product with price 120 (old price) and
total stock remaining 180 then user will not buy because price is
high and user will buy to another website.
if I show on website xyz product with price 100 (latest price) and
total stock remaining 180 then i lost 600 dollars (20 price x 30
quantity)
the solution is: Production Company is responsible to exchange my remaining inventory with new price
If you're using mysql do this on your query:
GROUP BY concat(ProductID , '-' , Price)
This will list your products separated by it's price.
I would like to set product discount in opencart depending on quantity, for instance if quantity > 20 product price to be 0.8. Can anyone help me?
Thank you in advance!
Check out the "discount" tab on the individual product admin page.
So,
Quantity: 21
Price: 0.8
Dates start/end: as appropriate
Priority: If you have different discounts, set the discounts with the highest quantiles as the highest priority
I have a very big problem, I need some products do not specify the discount to be applied to the product or the difference in amount, but to directly specify the selling price including tax, I'll explain:
Sales price without discount -> 30.00
Sales price I wanted -> 12:56
12:56 I want to write directly without having to do subtractions and / or calculations of percentages, can you tell me how can I do? Thank you very much.
i'm trying to make e-shop for business cards, brochures and etc printing. So main option is file upload option.
The problem is that opencart not recalculating prices if user uploaded different files. Lets say customer want to order 100 business cards with one picture (price is 0.2$ each when amount is 100 ) and 1000 business cards with another picture (0.1$ each when amount is 1000), in total it should be 120$, but opencart showing 110$ :
-business card (file1.pdf) x100 0.1$
-business card (file2.pdf) x1000 0.1$
Total 110$
i want that prices would be recalculated if uploaded files are not same :
-business card (file1.pdf) x100 0.2$
-business card (file2.pdf) x1000 0.1$
Total 120$
How can i do this?
I guess the solution could be very simple:
make the default business card price like $0.35 for less then 100 pcs ordered
set a discount on that business card product in this way:
more than 100 pcs ordered - price is $0.2 for a piece
more than 1000 pcs ordered - price is $0.1/pcs
now when client orders 100 pcs (one product, one file) and another 1000 pcs (same product, different file - should be different option), the price(s) should be calculated accordingly.
e.g.
100x BusinessCard (file1.pdf) $0.2 = $20
1000x BusinessCard (file2.pdf) $0.1 = $100
I have been having a problem with shopping cart price rules that aren't being applied correctly in the cart. The problem occurs when there are multiple discounts. Here is a specific example:
Discount A:
Product: 3 Book Set
Price: $20 each book
Discount: $10 (when you buy all 3)
Discount B:
Product: Suit (jacket and pants)
Price: $500 each piece
Discount: $50 (when you buy both)
Here is the situation:
When the suit is listed first and the books second, all discounts are taken ($50 + $10 = $60). However, when the books are first, only the suit discount is taken ($50).
Using firebug/firephp I have been able to see that for the first case, the discount is less than the price of the first product and all the discounts can be taken off that product.
In the second case, the discount is more than the price of the first product. When this happens, the $50 discount is spread across the 3 books. It takes $20 off the first book, $20 off the second, $10 off the third; but then the $10 discount for the books is not processed.
I need to know where to look next. What models/methods are involved in processing shopping cart price rules? How do I go about tracing the code so I can find out where the error happens?