Skip to content

Instantly share code, notes, and snippets.

@melek
Created March 13, 2023 23:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save melek/4bf187bfb85faf3864069777ea6d9cc3 to your computer and use it in GitHub Desktop.
Save melek/4bf187bfb85faf3864069777ea6d9cc3 to your computer and use it in GitHub Desktop.
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