majazmaja007
Forum Replies Created
-
Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] issues with refund in stripeOk , thank you
I will try that
Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] issues with refund in stripeFrom what i can see we don’t have that option
Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] issues with refund in stripeNo, we don’t use custom order tables.
or at least I am not aware it is something new.
We use avada theme, and woocommerce like always. If something changed in woocoomerce how to look where the change is?Do I contact woocoomerce support?
Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] issues with refund in stripeIf you see the screenshot, everything is fine till the last amount
somehow 205$ translates to 411$
and the final amount is not correct.
https://snipboard.io/tuJYPM.jpgForum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] issues with refund in stripethe thing is, in Stripe everything looks ok
https://snipboard.io/vcWsSR.jpgit is just weird how it puts random amounts in order.
but everything is refunded correctly.Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] issues with refund in stripehttps://snipboard.io/yNqm0Q.jpg
here is the meta in woocommerce, and it looks like it supposed to look, correct numbers
in Stripe as well, all amounts are correct, but in the order, everything looks weird.And when we export excel data for the accounting it doesn’t match.
Everything started about a month ago with big updates of WordPress and Wocoomerce.
We don’t have many refunds, but we didn’t have any issues for 7 months, and then this started.
I am not sure what causes the issue since we don’t have refunds every day, and updates of plugins and the system are regular. there were several updates in the last month and this issue didn’t resolve with updates.
Thank youForum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] issues with refund in stripeHello
currency is US dollar or Euro. We only have those 2.
Everything was ok till recently. We notices strange things in our woocommerce orders that were refunded.
here is the sampleit was supposed to be refunded 179.90$ and it looks like this. We refund directly in stripe, and there is everything fine, but in Woocommerce is a mess.
https://snipboard.io/RiA5s4.jpgmaybe now will work
Hello
can you please tell me how to attach snapshot here?
thank you
regardsForum: Plugins
In reply to: [WooCommerce] can tax be calculated on warehouse baseSo I found a solution here, but dot know where exactly to put this line of code
`Prices including tax – Experimental Behavior
A common feature request is to charge the same amount everywhere and absorb the differences in taxes. To enable this feature in 2.5 you would use the code:
add_filter( ‘woocommerce_adjust_non_base_location_prices’, ‘__return_false’ );
This would result in the following results, based on the previous 2 examples.
Selling from HR (with their 25% tax rate) to EU COUNTRIES. The price of the product is 9.99 including tax. ALSO Selling from US (with their 6% tax rate) to US and other world COUNTRIES. The price of the product is 9.99 including tax for both but tax amount deducted from that must be different
The EU would pay 9.99 for the product, the same as REST OF THE people.
Price = 9.99 (the same)
Tax = 9.99 / 1.06 = 8.39add_filter( ‘woocommerce_adjust_non_base_location_prices’, ‘__return_false’ );
does this to make it possible.Forum: Plugins
In reply to: [WooCommerce] can tax be calculated on warehouse basecan I set a standard US tax rate of 6% and ONLY for EU countries 25%. those are 2 tax categories I have for now.
we will use some kind of plugin like tax jar later, but for now, those are two tax rates I must apply depending from which warehouse products are shipped.Forum: Plugins
In reply to: [WooCommerce] can tax be calculated on warehouse baseThank you for the answer
can you help me in the direction on how exactly to set up tax, if my store price must stay the same for everyone?
if I include tax, US buyers get a lower price, and that is not correct.
the price is universal for everyone.
so hot exactly set up a tax that it is shown on the invoice in the right amount, but the price is the same.
thank you