Skip to content

Instantly share code, notes, and snippets.

@jom
Created May 15, 2019 09:22
Show Gist options
  • Save jom/5db4ab9a788eb13d5358bbd131f0b3ff to your computer and use it in GitHub Desktop.
Save jom/5db4ab9a788eb13d5358bbd131f0b3ff to your computer and use it in GitHub Desktop.
Gift Free Job Package
<?php
add_action( 'user_register', function( $user_id ) {
if ( ! function_exists( 'wc_paid_listings_give_user_package' ) ) {
return;
}
$product_id = 0; // Update this to be the ID for the new product you've created (shown on the product listings page)
wc_paid_listings_give_user_package( $user_id, $product_id );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment