Skip to content

Instantly share code, notes, and snippets.

View a1iraxa's full-sized avatar

Ali Raza a1iraxa

View GitHub Profile
@a1iraxa
a1iraxa / wc_order_status_changes.php
Created September 14, 2017 14:38 — forked from abegit/wc_order_status_changes.php
WooCommerce Hooks for Order Status Changes
function mysite_pending($order_id) {
error_log("$order_id set to PENDING", 0);
}
function mysite_failed($order_id) {
error_log("$order_id set to FAILED", 0);
}
function mysite_hold($order_id) {
error_log("$order_id set to ON HOLD", 0);
}
function mysite_processing($order_id) {
@a1iraxa
a1iraxa / xampp_php7_xdebug.md
Created August 10, 2017 08:41 — forked from odan/xampp_php7_xdebug.md
Installing Xdebug for XAMPP