Search the Wiki
How to use Recaptcha v2 on localhost
Using these keys below, you can do your tests on localhost : Google add a message on recaptcha to prevent users and the administrator that keys are just for tests.
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…
Allow WordPress Authors to Delete their Posts from the Front End
As seen on the https://clicknathan.com blog: How to Allow Subscribers to Delete Posts from the Front End while Still Blocking the Admin Area Allow WordPress Authors to Delete their Posts from the Front End Additionally, here is a simple script to put within the loop to display a delete link for anyone with the rights to Full Article…
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…
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:
Update User Meta After a Successful Order in WooCommerce
As seen on Rodolfo’s Business Bloomer website.
Assist/Fix CSS hover on iPhone/iPad/iPod
Check this JS Fiddle: http://jsfiddle.net/pizzaboy13/u7FL5/
Enqueue different and/or multiple versions of jQuery in WordPress
Adapted from past work and this article on WP Engine’s blog.
Display WooCommerce Customer order comments
I have a little problem when I try to display woocommerce customer order comments (not the notes, but the comments that a customer can add during the checkout process).