Search the Wiki

Viewing 1 to 10 of 337 items

How to get WooCommerce order details

Since Woocommerce mega major Update 3.0+ things have changed quite a lot: WC_Order properties can’t be access directly as before and will throw some errors. New WC_Order and WC_Abstract_Order getters and setters methods are now needed. There is some New classes for Order items: WC_Order_Item class. WC_Order_Item_Product class. Also see: Get Order items and WC_Order_Item_Product  Full Article…

0

Use Cron to run a php script from a URL

If your php script can be invoked using an URL, you can lynx, or curl, or wget to setup your crontab as shown below. The following script executes the php script (every hour) by calling the URL using the lynx text browser. Lynx text browser by default opens a URL in the interactive mode. However,  Full Article…

0

How to get WooCommerce order details

See this Stack Overflow thread for more commentary: https://stackoverflow.com/a/44708344 Get and access to the order data properties (in an array of values): Get the order items and access the data with WC_Order_Item_Product and WC_Order_Item methods:

0