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.
Related
It's sounds a kind weird but I need to use a Prestashop 1.7 discount based on transportation id = 1 to increase 20% over cart's total.
I don't know where the function is and where to place...
You need to find module. For example Cash on Delivery with fee.
Actually, i'm working on opencart 2.3, if now checkout page calculation in opencart:
Sub-Total₹ 1,520.00
India Shipping₹ 180.00
Discount (-07%)₹ -119.00
Total₹ 1,581.00
it s taking discount in shipping amount also i don't want discount shipping amount, i want calculation like this please help.
Sub-Total₹ 1,520.00
Discount (-07%)₹ -106.40
India Shipping₹ 180.00
Total₹ 1,593.60
you should change in admin>extensions>extensions>Order totals... sort order for the shipping. Move it down by changing sort order number higher than your discount voucher.
is it possible in the current version of Magento 2 to apply the discount calculation on the cart total price ((Qty in cart * Price) - Discount) instead of the single item price. ((Price - Discount) * Qty)
We use a lot of discount rules. Sometimes multiple rules. The current behavior of magento causes rounding errors with the currently used accounting software.
Is there a way to change the calculation behavior of Magento?
Thanks in advance.
I will try to explain what I need:
By default woocommerce allows to handle just 1 scheduled sale price per product, I need the possibility to add another one (for simple and variable products).
In other words, for each product I need to have 3 different prices, depending on the date the purchase is made.
Also, in the product page I need to show ALWAYS the 3 prices and their relative scheduled period of time (even if it's in the past or future).
Example:
Product #1
from 01-01-2014 to 01-31-2014 you pay € 100 (this is what I need)
from 02-01-2014 to 02-28-2014 you pay € 200 (scheduled woocommerce
sale price) from 03-01-2014 and after you pay € 300 (regular woocommerce price)
Product #2
from 01-01-2014 to 01-31-2014 you pay € 150 (this is what I need)
from 02-01-2014 to 02-28-2014 you pay € 280 (scheduled woocommerce sale price)
from 03-01-2014 and after you pay € 330 (regular woocommerce price)
etc...
Any suggestion on how to add this feature in a new plugin?
You can easily customized these conditions using inner code on WooCoomerce. No need to use any extra plugin for the same. Following is the idea, how you can do that.. Hope this helps.
Having a look at the Product abstract class in WooCommerce the following php code gets whether or not the product is on sale:
return ($this->sale_price != $this->regular_price && $this->sale_price == $this->price);
Which seems to indicate that the _price has to be the same as the sale_price in order for it to be classed as on sale. So just
update_post_meta($id, '_price', 'new sale price here too');
you can edit this code as per your required conditions.
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.