Skip to content

Instantly share code, notes, and snippets.

View jkohlbach's full-sized avatar

Josh Kohlbach jkohlbach

View GitHub Profile
@jkohlbach
jkohlbach / gist:7331462
Created November 6, 2013 05:38
Automatically apply a coupon to a user's first order in WooCommerce
add_action('woocommerce_before_cart', 'firstTimeShopper');
add_action('woocommerce_before_checkout_form', 'firstTimeShopper');
function firstTimeShopper() {
global $woocommerce;
$coupon_code = 'firstimeshopper'; // Change this to whatever your coupon code is
if (is_user_logged_in()) {
$current_user = wp_get_current_user();