Woocommerce additional price - woocommerce

The way WooCommerce works is good I was wondering is there any way where I can set base price and then additional price
e.g.
Base Price: $25
Size
Small: add $0
Large: add $20

Related

Increase price of all products after every sale (WOOCOMMERCE)

I would like to increase the price by $20 of all products after every new sell in woocommerce
Exemple:
Starting prices $50
First order : all products prices become $70
Second order : all products prices become $90
Third : all products prices become $110
and so...
I believe this plugin should give you what you want it is a bit outdated so use at your own caution
https://wordpress.org/plugins/raise-prices-with-sales-for-woocommerce/

Woocommerce - Get WC_Order_Item_Product line discount

i've been trying this for while with no success, i'm trying to get the WC_Order_Item_Product applied discount, OR even better, the line subtotal without tax BUT with discount once the order is already created in the backend, example:
(Backend)
Order #xxxx with 20% discount:
Item - Price - Amount - Total
Pen - 10$ - 2 - 16$ (4$ discount)
Jar - 30$ - 1 - 24$ (6$ discount)
Yup expensive jar... so i need either the subtotal (16$, 24$) or the discount so i can make the maths (4$, 6$) and also without taxes (as i said, subtotal).
Tried: $wc_order_item_product->get_subtotal() but it returns the full price without the discount, i need what the customer really paid (with the discount).
Thanks in advance guys, really appreciate it.
If anyone is breaking is head already i've found the solution, the method "get_total()" from WC_Order_Item_Product DOESN'T give the total (sum of price+discount+taxes) instead, it gives the total without taxes (price+discount) =D

Show tax rates in percentage instead of total tax value - woocommerce

In my cart beside total amount it shows how much amount of tax included. But I want to show the tax rate only ( percentage value just) instead of the amount. Please help how to do this .
Thanks in advance
Shows the tax amount but i want to change it to % vlaue
This should be configurable in the options however, i'm pretty sure u would have to show the total tax value according to laws.
WooCommerce > Settings > Tax > Your Tax Rates
there is a display option.

Gravity Forms - Conditional Result

I have a GF with 3 products at a set price. However, if the user purchases more than one, there's a $50 discount on each additional item.
EX: Product 1 = $500
User buys 2 items, $500 + $450 (total = $950). Is there a way to do this with native (or plugin) conditional logic?
The only way I know how to do this natively is to create an extra Product field that adds as a "base" fee. In your case, that fee would be $50. Then your product price would be $450 all the time. Use conditional logic to "show" the base fee when only 1 item is ordered and to "hide" the base fee when more than 1 item is ordered.

Add flat rate shipping fees in Woocommerce?

Hi , I am working in Woocommerce and I want to add shipping fees $7 on
the total order that less than $50 .
Could you please help me on this issue ?
Advanced Costs option under WC settings
The Cost field allows you to charge a flat rate per item, a percentage based cost or a minimum fee.
Available placeholders:
[qty] – Number of products in the cart
[fee] – An additional fee. This fee has two optional arguments.
percent – A percentage based on total order cost.
min_fee – A minimum amount. Useful when using percentages.
Examples
10 + ( 2 * [qty] ) – A base shipping cost of $10 plus $2 for each item in the cart.
20 + [fee percent="10" min_fee="4"] – A base shipping cost of $20 plus 10% of the order total, which is at least $4.
Check here

Resources