Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabrielmerovingi/4173f4765fda631caa7d45b72c2a028f to your computer and use it in GitHub Desktop.
Save gabrielmerovingi/4173f4765fda631caa7d45b72c2a028f to your computer and use it in GitHub Desktop.
if ( function_exists( 'mycred_get_woo_product_reward' ) ) {
$product_id = 1;
$point_type = MYCRED_DEFAULT_TYPE_KEY;
$reward = mycred_get_woo_product_reward( $product_id, NULL, $point_type );
if ( $reward !== false && $reward != '' )
printf( 'Earn %s Points buying this product.', $reward );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment