jorcool13
Forum Replies Created
-
Forum: Plugins
In reply to: [Popups for WooCommerce: Add to Cart, Checkout & More] HPOS CompatibilityI don’t think your plugin modifys anything about how Woocommerce’s data is saved. So you probably just need to follow this: https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book#declaring-extension-incompatibility
Never mind I just studied your code and found that I can do it like this
Zprint\Printer::reprintOrder('123456', array_map('intval', [1]));We don’t print orders automatically because some orders has a specific ship date. We want to integrate a function in our custom plugin to select the orders that must be printed. And we don’t want to go order by order to print them. So how can we print from PHP code?
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Duplicate Order Notification Emails…This must be something with the webhooks as it is also duplicating the order comment and the status change.
@ttoaster Can you confirm this too?
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Duplicate Order Notification Emails…Please do fix this ASAP. Customers are getting angry and they think they have been charged twice.
Update: I have modified the plugin to work with Puerto Rico the only thing that I’m missing is the part that actually requests the rate on the cart. In need to detect when Puerto Rico is selected as the country and to actually send US as the country and PR as the state. That’s basically what I did in the plugin in all parts that uses the base_county, base_state and/or base_location.
Thanks dougaitken!