perikazo
Forum Replies Created
-
Hello again, we use the “Use prices of bundles items” option and we enter the prices of our products without taxes, in the store if we show the prices including VAT, then we have to use the “Regular price with Tax” value, which makes the bundle add taxes for the second time.
We have found the solution to the problem for other people who enter prices without taxes and use the “Use prices of bundles items” option in their bundles and want the price including taxes to be shown in the feed, the only thing they have to do is set the tax type field to the value “none”, this does not affect how the prices are shown on the website, only in the feed. The solution is not only for CTX Feed, since the same thing happens in other plugins that we have tested, but we are going to continue using CTX Feed because it seems to us the best option ??
I attach a screenshot with the solution.
https://prnt.sc/33kqiUHxTscu
Thank you very much for the support.- This reply was modified 3 months, 3 weeks ago by perikazo. Reason: Errors
Thank you for your reply,
The problem is that we do not set a fixed price for the product package, the price is the sum of all the products in the composition. We will try other options to see if this works. I am attaching screenshots of how we have it configured so that it will help you in future versions.
https://prnt.sc/cBP7FwxbFyMr
https://prnt.sc/lgdJfksC0CF0
https://prnt.sc/4Logti7mEVAA
RegardsForum: Plugins
In reply to: [Variation Auto Expire For WooCommerce] Date and time field is not savedYes, it is similar, I know the wordpress code (I am a PHP developer) but if you use esc_attr_e it returns a text string sometimes and that is what produces the failure, and using echo esc_attr always returns numeric string in this case, in my website this produced a problem, the error is not the code of your plugin, it is that wordpress function that sometimes returns unexpected things, so to avoid errors, echo esc_attr is safer in this case. I hope it will help you for future updates.
Thanks again for your great plugin ??
Forum: Plugins
In reply to: [Variation Auto Expire For WooCommerce] Date and time field is not savedHello friend, I think I have found the problem that the date is not saved correctly and for me this is resolved:
class_ycve_admin.php
Line 111:
You need replace:
esc_attr_e( $loop )
By:
echo esc_attr( $loop );
Regards!