Navigation Menu

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 Garconis/369477622103dbb3887272baa3732ba2 to your computer and use it in GitHub Desktop.
Save Garconis/369477622103dbb3887272baa3732ba2 to your computer and use it in GitHub Desktop.
WooCommerce | Change CTA URL for WooCommerce Gift Card Emails
<?php
add_filter('woocommerce_gc_email_received_action_button_url', 'custom_giftcard_cta_url', 10, 1);
function custom_giftcard_cta_url($url) {
return get_home_url();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment